a2zusage 1.0.3 → 1.0.4
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 -15
- package/bin/a2zusage +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -68,21 +68,21 @@ cargo build --release
|
|
|
68
68
|
|
|
69
69
|
a2zusage supports **14+ AI coding tools** out of the box:
|
|
70
70
|
|
|
71
|
-
| Tool | Data Source |
|
|
72
|
-
|
|
73
|
-
| **Claude Code** | Local JSONL (`~/.claude/projects/`) | ✅
|
|
74
|
-
| **Cursor** | SQLite database | ✅
|
|
75
|
-
| **GitHub Copilot** | GitHub API + Local logs |
|
|
76
|
-
| **Windsurf** | Cascade logs (`~/.codeium/`) |
|
|
77
|
-
| **Warp AI** | SQLite database | ✅
|
|
78
|
-
| **Cline / Roo Code** | VS Code extension storage | ✅
|
|
79
|
-
| **OpenCode** | Local JSON files | ✅
|
|
80
|
-
| **OpenAI Codex** | OpenAI Usage API | ✅
|
|
81
|
-
| **Gemini CLI** | Local telemetry (`~/.gemini/`) |
|
|
82
|
-
| **Amazon Q Developer** | Local logs |
|
|
83
|
-
| **Tabnine** | Local logs |
|
|
84
|
-
| **Gemini Code Assist** | Google Cloud |
|
|
85
|
-
| **Sourcegraph Cody** | VS Code extension |
|
|
71
|
+
| Tool | Data Source | What’s Accurate |
|
|
72
|
+
|------|-------------|----------------|
|
|
73
|
+
| **Claude Code** | Local JSONL (`~/.claude/projects/`) | ✅ Exact token counts (input/output + cache tokens when present) |
|
|
74
|
+
| **Cursor** | SQLite database | ✅ Exact token counts (when present in DB) |
|
|
75
|
+
| **GitHub Copilot** | GitHub API + Local logs | ⚠️ Usage count / requests only (GitHub does not expose reliable token totals here) |
|
|
76
|
+
| **Windsurf** | Cascade logs (`~/.codeium/`) | ⚠️ Partial: JSON/JSONL token fields supported; protobuf `.pb` logs are detected but not yet parsed |
|
|
77
|
+
| **Warp AI** | SQLite database | ✅ Total tokens (Warp does not expose a reliable input/output split) |
|
|
78
|
+
| **Cline / Roo Code** | VS Code extension storage | ✅ Exact token counts (when stored by the extension) |
|
|
79
|
+
| **OpenCode** | Local JSON files | ✅ Exact token counts (when present in session/message usage fields) |
|
|
80
|
+
| **OpenAI Codex** | OpenAI Usage API | ✅ Exact token counts (requires API key + org access) |
|
|
81
|
+
| **Gemini CLI** | Local telemetry (`~/.gemini/`) | ⚠️ Partial: JSON/JSONL telemetry supported when present; protobuf `.pb` logs are detected but not yet parsed |
|
|
82
|
+
| **Amazon Q Developer** | Local logs | ⚠️ Best-effort: logs may not contain token totals |
|
|
83
|
+
| **Tabnine** | Local logs | ⚠️ Partial: uses explicit token fields when present; no invented prompt/context tokens |
|
|
84
|
+
| **Gemini Code Assist** | Google Cloud | ⚠️ Not implemented in this repo yet |
|
|
85
|
+
| **Sourcegraph Cody** | VS Code extension | ⚠️ Token counts only when present; otherwise request_count only |
|
|
86
86
|
| **Replit Ghostwriter** | Web link | 🔗 Link Only |
|
|
87
87
|
|
|
88
88
|
## Usage
|
package/bin/a2zusage
CHANGED
|
Binary file
|
package/package.json
CHANGED