by mag123c
Ultra-fast token & cost tracker for LLM Token Usage (e.g. Claude Code)
# Add to your Claude Code skills
git clone https://github.com/mag123c/toktrackGuides for using cli tools skills like toktrack.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T16:06:32.849Z",
"npmAuditRan": true,
"pipAuditRan": true
}toktrack is an open-source cli tools skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by mag123c. Ultra-fast token & cost tracker for LLM Token Usage (e.g. Claude Code). It has 180 GitHub stars.
Yes. toktrack passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/mag123c/toktrack" and add it to your Claude Code skills directory (see the Installation section above).
toktrack is primarily written in Rust. It is open-source under mag123c on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other CLI Tools skills you can browse and compare side by side. Open the CLI Tools category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh toktrack against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
English | 한국어
⚠️ Did you know? Claude Code deletes your session data after 30 days by default. Once deleted, your token usage and cost history are gone forever — unless you preserve them.
The token & cost tracker that never loses your history. Most tools re-read your CLI's session files on every run — so when Claude Code deletes them after 30 days, your cost history goes with them. toktrack keeps a persistent cache, so your history survives.
Track usage across all your AI coding CLIs — Claude Code, GitHub Copilot CLI, Codex CLI, Gemini CLI, Qwen Code, OpenCode, PI Agent, and Antigravity — in one dashboard. Built in Rust, so it stays fast even on huge histories (simd-json + rayon).

| Problem | Solution |
|---|---|
| 🗑️ Claude Code deletes data after 30 days — your cost history disappears | 💾 Persistent cache — history survives even after the CLI deletes its files |
| 📊 No unified view — each CLI keeps its own separate data | 🎯 One dashboard — Claude Code, Copilot, Codex, Gemini, Qwen, OpenCode, PI Agent in one place |
| 🐌 Re-scanning big histories is slow | ⚡ Cached queries in ~0.04s — instant on every run |
(no project). Project details are cached, so they survive past the CLI's 30-day deletiondaily, weekly, monthly, stats with JSON output supporttoktrack reportNo Rust toolchain required. Downloads the correct binary for your platform automatically.
npx toktrack
# or
bunx toktrack
brew tap mag123c/toktrack
brew install toktrack
cargo install --git https://github.com/mag123c/toktrack
Download from GitHub Releases.
| Platform | Architecture |
|---|---|
| macOS | x64, ARM64 |
| Linux | x64, ARM64 |
| Windows | x64 |
# Launch TUI dashboard
npx toktrack
# Get today's cost in JSON
npx toktrack daily --json
# Monthly summary
npx toktrack monthly --json
toktrack
# Open TUI at specific tab
toktrack daily # Overview (daily view)
toktrack weekly # Overview (weekly view)
toktrack monthly # Overview (monthly view)
toktrack stats # Stats tab
# JSON output (for scripting)
toktrack daily --json
toktrack weekly --json
toktrack monthly --json
toktrack stats --json
# Usage report (shareable receipt)
toktrack report # Last 7 days (text)
toktrack report --month # Last 30 days
toktrack report --days 14 # Last N days
toktrack report --svg # Text + SVG file
# Data-preservation audit (live on disk vs cache-only)
toktrack audit # Per-source coverage report
toktrack audit --json # Machine-readable
Show today's AI spend right in your prompt, updated after every command:
~/projects/api main $12.40
❯
A few lines of zsh/bash/fish — see Shell integration.
toktrack can include Codex session logs from SSH servers by syncing remote JSONL
files into a local snapshot and parsing them with the existing Codex parser. It
uses your existing ssh/rsync setup and never stores SSH passwords or keys.
Create ~/.toktrack/config.toml:
default_remotes = ["devbox"]
[[remotes]]
name = "devbox"
target = "ubuntu@devbox"
[remotes.paths]
codex = "~/.codex/sessions"
[[remotes]]
name = "prod"
target = "prod-alias"
[remotes.paths]
codex = "/home/codex/.codex/sessions"
You can also manage the same config from the CLI:
toktrack remote add devbox ubuntu@devbox --default
toktrack remote add prod prod-alias --codex-path /home/codex/.codex/sessions
toktrack remote default add prod
toktrack remote default remove devbox
toktrack remote remove prod
toktrack remote list
By default, commands read local data plus default_remotes:
toktrack report
toktrack daily --json
Override the configured defaults when needed:
toktrack --remote prod report # local + default_remotes + prod
toktrack --all-remotes stats # local + every configured remote
toktrack --local-only report # local only
Remote Codex sources appear as codex@<remote-name> and use separate cache
files such as ~/.toktrack/cache/codex@devbox_daily.json.
If a remote sync fails, toktrack warns and continues with local data plus any
existing snapshot/cache for that remote.
| Key | Action |
|---|---|
1-5 |
Switch tabs directly (incl. Projects, Audit) |
Tab / Shift+Tab |
Next / Previous tab |
j / k or ↑ / ↓ |
Scroll up / down |
Enter |
Open model breakdown popup (Daily tab) |
d / w / m |
Daily / Weekly / Monthly view (Daily tab) |
s / S |
Sort by date → cost → tokens / Reverse direction (detail views) |
r |
Refresh data |
? |
Toggle help |
Ctrl+C |
Quit |
| CLI | Status | Data Location |
|---|---|---|
| Claude Code | ✅ | ~/.claude/projects/ |
| GitHub Copilot CLI | ✅ | ~/.copilot/session-state/*/events.jsonl |
| Codex CLI | ✅ | ~/.codex/sessions/ |
| Gemini CLI | ✅ | ~/.gemini/tmp/*/chats/ |
| Qwen Code | ✅ | ~/.qwen/tmp/*/chats/ |
| OpenCode | ✅ | ~/.local/share/opencode/storage/message/ |
| PI Agent | ✅ | ~/.pi/agent/sessions/ |
| Antigravity | ✅ | ~/.gemini/antigravity-{ide,cli}/conversations/*.db |
Costs from sources that don't record their own price (Gemini, Qwen, Codex, Antigravity, GitHub Copilot, and modern Claude logs) are computed from LiteLLM API list-price estimates and shown with a
~marker (estimated). For GitHub Copilot CLI, the displayed value is the API-equivalent cost rather than your actual subscription/credit spend. Pricing works offline via a bundled snapshot when the network is unavailable.
Each source's data directory can be overridden (matching the upstream CLI's own variable):
| Variable | Source | Default |
|---|---|---|
CLAUDE_CONFIG_DIR |
Claude Code (root) | ~/.claude (+ /projects) |
COPILOT_HOME |
GitHub Copilot CLI | ~/.copilot (+ /session-state) |
CODEX_HOME |
Codex CLI (root) | ~/.codex (+ /sessions) |
GEMINI_CLI_HOME |
Gemini CLI (home root) | ~ (+ /.gemini/tmp) |
QWEN_HOME |
Qwen Code | ~/.qwen (+ /tmp) |
OPENCODE_DATA_DIR / XDG_DATA_HOME |
OpenCode | ~/.local/share/opencode |
PI_CODING_AGENT_SESSION_DIR (then PI_AGENT_DIR) |
PI Agent | ~/.pi/agent/sessions |
export CLAUDE_CONFIG_DIR="/path/to/.claude"
Custom pricing (including web_search / web_fetch per-request rates) can be set in ~/.toktrack/pricing.toml.
| Run | Time |
|---|---|
| First run (cold) | ~1.0s |
| Daily use (cached) | ~0.04s |
Measured on Apple Silicon with 2,000+ JSONL files (3.4 GB). The persistent cache means only the current day is recomputed on each run — past days are read straight from cache, so daily use stays instant no matter how large your history grows.
Why it's fast: SIMD JSON parsing (simd-json) + parallel processing (rayon) = ~3 GiB/s throughput on the cold path.
The Problem: You've been using Claude Code for 3 months, spending hundreds of dollars. One day you want to check your total spending — but Claude Code already deleted your session files from 2 months ago. That cost data is gone forever.
toktrack solves this. It caches daily cost summaries independently, so your usage history survives even after the CLI deletes the original files.
| CLI | Default Retention | Policy |
|---|---|---|
| Claude Code | 30 days | cleanupPeriodDays (default: 30) |
| Gemini CLI | Unlimited | opt-in sessionRetention |
| Codex CLI | Unlimited | size-cap only (max_bytes) |
~/.toktrack/
├── cache/
│ ├── claude-code_daily.json # Daily cost summaries
│ ├── codex_daily.json
│ ├── codex@devbox_daily.json
│ ├── gemini_daily.json
│ ├── opencode_daily.json
│ └── pi-agent_daily.json
├── remotes/
│ └── devbox/codex/sessions/ # Synced remote Codex JSONL snapshots
├── config.toml # Optional remote source configuration
└── p