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.
@@ -158,7 +158,7 @@ function ConfirmModal({ enabling, saving, onConfirm, onCancel }) {
158
158
  <li>Cursor &ndash; local SQLite (state.vscdb)</li>
159
159
  <li>Copilot / VS Code &ndash; ~/.config/github-copilot/apps.json</li>
160
160
  <li>Codex &ndash; local auth.json (JWT decode only)</li>
161
- <li>Windsurf &ndash; local SQLite (state.vscdb)</li>
161
+ <li>Devin &ndash; 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 WindsurfCard({ data }) {
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 'windsurf': case 'windsurf-next': case 'antigravity': return <WindsurfCard data={data} />
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 (Windsurf variants)
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
- }