clanker-stats 0.2.0 → 0.3.0
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 +32 -0
- package/package.json +10 -2
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# clanker-stats
|
|
2
|
+
|
|
3
|
+
See how many tokens you've burned across AI coding tools.
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
npx clanker-stats
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Generates `chart.png` in the current directory and opens it.
|
|
14
|
+
|
|
15
|
+
### Share on X
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
npx clanker-stats --share
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Copies the chart to your clipboard, opens X with a pre-filled post. Just paste and post.
|
|
22
|
+
|
|
23
|
+
## Supported tools
|
|
24
|
+
|
|
25
|
+
| Tool | Data source |
|
|
26
|
+
|------|------------|
|
|
27
|
+
| Claude Code | `~/.claude/projects/` |
|
|
28
|
+
| Codex | `~/.codex/sessions/` |
|
|
29
|
+
| OpenCode | `~/.local/share/opencode/` |
|
|
30
|
+
| Gemini CLI | `~/.gemini/tmp/` |
|
|
31
|
+
| Amp | `~/.local/share/amp/threads/` |
|
|
32
|
+
| Pi | `~/.pi/agent/sessions/` |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clanker-stats",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "See how many tokens you've burned across AI coding tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,5 +13,13 @@
|
|
|
13
13
|
"@resvg/resvg-js": "^2",
|
|
14
14
|
"fast-glob": "^3"
|
|
15
15
|
},
|
|
16
|
-
"license": "MIT"
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/dnakov/clanker-stats.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/dnakov/clanker-stats",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/dnakov/clanker-stats/issues"
|
|
24
|
+
}
|
|
17
25
|
}
|