- What is the best tool for tracking Claude Code usage?
- It depends on what you want. For raw token counts, ccusage is the standard — it reads Claude Code logs locally and reports input, output, cache-read, and cache-write per session. For visualization, Token Dashboard turns those counts into charts. For efficiency scoring and ranking, SigRank bundles ccusage and adds Υ Yield (cache_read × output / input²), a live leaderboard, class tiers, and multi-platform support. If you only want a quick per-session cost check, Claude Code's built-in /cost command works without any install.
- How do I track my Claude Code token usage?
- The simplest way is ccusage — install it, run it, and it reads your Claude Code logs and reports token counts per session. If you want efficiency scoring on top of the raw counts, install SigRank (which bundles ccusage) and run `sigrank enroll` then `sigrank submit`. SigRank reads the same logs, computes your Υ Yield, and publishes a signed snapshot to the leaderboard. For a quick per-session check without installing anything, use Claude Code's built-in /cost command.
- Does SigRank work with Claude Code?
- Yes. SigRank bundles ccusage, which reads Claude Code's local logs directly. Run `npm install -g sigrank`, then `sigrank enroll` to create your operator identity, and `sigrank submit` to score and publish. Your Claude Code sessions contribute to the same leaderboard rank as your ChatGPT, Gemini, Copilot, or Cursor sessions — unified, not siloed. SigRank reads token counts only, never prompt content, and signs snapshots with ed25519 before they leave your device.
- How is SigRank different from ccusage for Claude Code?
- ccusage reads Claude Code logs and reports raw token counts — it is a measurement tool. SigRank bundles ccusage and adds scoring (Υ Yield, compression ratio, SNR, leverage, velocity), operator identity, ed25519-signed submissions, a live leaderboard with class tiers, and multi-platform support across Claude, ChatGPT, Gemini, Copilot, Cursor, and 15+ platforms. ccusage tells you what you spent; SigRank tells you how efficiently you spent it and where you rank.
- Can I see Claude Code token usage without installing anything?
- Yes — Claude Code has a built-in /cost command that shows token usage and cost for the current session. This is session-scoped only: no history, no aggregation, no efficiency metrics, and no cross-session view. For anything beyond a quick per-session check, you need ccusage (for raw counts) or SigRank (for counts + scoring + leaderboard).