tokentracker-cli 0.6.2 → 0.6.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 +1 -1
- package/README.zh-CN.md +1 -1
- package/dashboard/dist/assets/{main-BQHdaSnI.js → main-CviVBKeR.js} +22 -22
- package/dashboard/dist/index.html +1 -1
- package/dashboard/dist/llms.txt +4 -4
- package/dashboard/dist/share.html +1 -1
- package/package.json +2 -2
- package/src/commands/init.js +1 -1
- package/src/lib/pricing/seed-snapshot.json +1 -1
- package/src/lib/rollout.js +27 -5
- package/src/lib/runtime-config.js +1 -1
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
]
|
|
136
136
|
}
|
|
137
137
|
</script>
|
|
138
|
-
<script type="module" crossorigin src="/assets/main-
|
|
138
|
+
<script type="module" crossorigin src="/assets/main-CviVBKeR.js"></script>
|
|
139
139
|
<link rel="stylesheet" crossorigin href="/assets/main-HLMqEvtH.css">
|
|
140
140
|
</head>
|
|
141
141
|
<body>
|
package/dashboard/dist/llms.txt
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
Token Tracker tracks token usage across AI coding agent clients (Claude Code, Codex, Cursor, Kiro, Gemini, OpenCode, OpenClaw, Every Code).
|
|
4
4
|
|
|
5
5
|
## Canonical URL
|
|
6
|
-
- [Homepage](https://
|
|
6
|
+
- [Homepage](https://www.tokentracker.cc/)
|
|
7
7
|
|
|
8
8
|
## Priority URLs
|
|
9
|
-
- [Homepage](https://
|
|
10
|
-
- [Leaderboard](https://
|
|
9
|
+
- [Homepage](https://www.tokentracker.cc/)
|
|
10
|
+
- [Leaderboard](https://www.tokentracker.cc/leaderboard)
|
|
11
11
|
|
|
12
12
|
## Product
|
|
13
13
|
- Install command: `npx tokentracker-cli`
|
|
@@ -15,7 +15,7 @@ Token Tracker tracks token usage across AI coding agent clients (Claude Code, Co
|
|
|
15
15
|
- [Source repository](https://github.com/mm7894215/TokenTracker)
|
|
16
16
|
|
|
17
17
|
## Policy and Discovery
|
|
18
|
-
- [llms.txt](https://
|
|
18
|
+
- [llms.txt](https://www.tokentracker.cc/llms.txt)
|
|
19
19
|
- Data principle: token counts only, never prompts or conversation content.
|
|
20
20
|
|
|
21
21
|
## Contact
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"description": "Shareable Token Tracker dashboard snapshot."
|
|
52
52
|
}
|
|
53
53
|
</script>
|
|
54
|
-
<script type="module" crossorigin src="/assets/main-
|
|
54
|
+
<script type="module" crossorigin src="/assets/main-CviVBKeR.js"></script>
|
|
55
55
|
<link rel="stylesheet" crossorigin href="/assets/main-HLMqEvtH.css">
|
|
56
56
|
</head>
|
|
57
57
|
<body>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tokentracker-cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"description": "Token usage tracker for AI agent CLIs (Claude Code, Codex, Cursor, Gemini, Kiro, OpenCode, OpenClaw, Every Code, Hermes, GitHub Copilot, Kimi Code, CodeBuddy, oh-my-pi, Craft Agents)",
|
|
5
5
|
"main": "src/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"type": "git",
|
|
50
50
|
"url": "git+https://github.com/mm7894215/TokenTracker.git"
|
|
51
51
|
},
|
|
52
|
-
"homepage": "https://
|
|
52
|
+
"homepage": "https://www.tokentracker.cc",
|
|
53
53
|
"bugs": {
|
|
54
54
|
"url": "https://github.com/mm7894215/TokenTracker/issues"
|
|
55
55
|
},
|
package/src/commands/init.js
CHANGED
|
@@ -73,7 +73,7 @@ const ASCII_LOGO = [
|
|
|
73
73
|
].join("\n");
|
|
74
74
|
|
|
75
75
|
const DIVIDER = "----------------------------------------------";
|
|
76
|
-
const DEFAULT_DASHBOARD_URL = "https://
|
|
76
|
+
const DEFAULT_DASHBOARD_URL = "https://www.tokentracker.cc";
|
|
77
77
|
|
|
78
78
|
async function cmdInit(argv) {
|
|
79
79
|
const opts = parseArgs(argv);
|