agentlytics 0.2.11 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -62
- package/cache.js +221 -5
- package/editors/base.js +1 -1
- package/editors/codebuff.js +338 -0
- package/editors/copilot.js +3 -3
- package/editors/gsd.js +366 -0
- package/editors/index.js +10 -5
- package/editors/windsurf.js +64 -37
- package/index.js +32 -12
- package/package.json +6 -6
- package/public/assets/index-DV6ONi_F.css +2 -0
- package/public/assets/index-SOQVJIDS.js +73 -0
- package/public/index.html +16 -0
- package/relay-client.js +10 -8
- package/server.js +104 -2
- package/share-image.js +9 -7
- package/ui/src/App.jsx +5 -2
- package/ui/src/components/ChatSidebar.jsx +31 -2
- package/ui/src/components/EditorIcon.jsx +60 -11
- package/ui/src/components/TokenTimeline.jsx +258 -0
- package/ui/src/lib/api.js +43 -0
- package/ui/src/lib/constants.js +10 -8
- package/ui/src/pages/Artifacts.jsx +0 -12
- package/ui/src/pages/GSD.jsx +726 -0
- package/ui/src/pages/Settings.jsx +1 -1
- package/ui/src/pages/Subscriptions.jsx +3 -3
- package/deno.json +0 -9
- package/mod.ts +0 -1020
|
@@ -158,7 +158,7 @@ function ConfirmModal({ enabling, saving, onConfirm, onCancel }) {
|
|
|
158
158
|
<li>Cursor – local SQLite (state.vscdb)</li>
|
|
159
159
|
<li>Copilot / VS Code – ~/.config/github-copilot/apps.json</li>
|
|
160
160
|
<li>Codex – local auth.json (JWT decode only)</li>
|
|
161
|
-
<li>
|
|
161
|
+
<li>Devin – local SQLite (state.vscdb)</li>
|
|
162
162
|
</ul>
|
|
163
163
|
<p style={{ color: 'var(--c-text2)' }}>Tokens are kept <strong>in-memory only</strong> and never sent to any third-party service.</p>
|
|
164
164
|
</>
|
|
@@ -106,7 +106,7 @@ function CursorCard({ data }) {
|
|
|
106
106
|
)
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
-
function
|
|
109
|
+
function DevinCard({ data }) {
|
|
110
110
|
const u = data.usage || {}
|
|
111
111
|
const billing = data.billingCycle || {}
|
|
112
112
|
return (
|
|
@@ -294,7 +294,7 @@ function EditorCard({ data }) {
|
|
|
294
294
|
const cardRenderer = () => {
|
|
295
295
|
switch (source) {
|
|
296
296
|
case 'cursor': return <CursorCard data={data} />
|
|
297
|
-
case '
|
|
297
|
+
case 'devin': case 'devin-next': case 'antigravity': return <DevinCard data={data} />
|
|
298
298
|
case 'claude-code': return <ClaudeCodeCard data={data} />
|
|
299
299
|
case 'vscode': case 'vscode-insiders': return <CopilotCard data={data} />
|
|
300
300
|
case 'copilot-cli': return <CopilotCard data={data} />
|
|
@@ -303,7 +303,7 @@ function EditorCard({ data }) {
|
|
|
303
303
|
}
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
-
// Models list (
|
|
306
|
+
// Models list (Devin variants)
|
|
307
307
|
const models = data.models || []
|
|
308
308
|
|
|
309
309
|
return (
|
package/deno.json
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"tasks": {
|
|
3
|
-
"start": "deno run --allow-read --allow-write --allow-net --allow-env --allow-ffi --allow-run index.js",
|
|
4
|
-
"collect": "deno run --allow-read --allow-write --allow-env --allow-ffi index.js --collect",
|
|
5
|
-
"scan": "deno run --allow-read --allow-env mod.ts",
|
|
6
|
-
"scan:json": "deno run --allow-read --allow-env mod.ts --json"
|
|
7
|
-
},
|
|
8
|
-
"nodeModulesDir": "auto"
|
|
9
|
-
}
|