Analysis of 100M tokens in Claude Code reveals 99.4% input usage

Token usage breakdown from 100M tokens tracked
A detailed analysis of Claude Code usage tracked 1,289 requests across extended coding sessions, totaling approximately 100.9M tokens. The breakdown reveals a significant imbalance between input and output tokens.
Token distribution:
- Input tokens: 100.3M (99.4% of total)
- Cached tokens: 84.2M (84% of input)
- Output tokens: 616K (0.6% of total)
The context re-reading bottleneck
Claude Code spends 99.4% of its token budget reading context and only 0.6% writing code. This pattern isn't specific to Claude Code but reflects how all agentic coding systems currently operate. Every time Claude Code makes a move — reading a file, running a command, editing code — it requires the full context to be fed back in, including repository structure, conversation history, tool results, and error logs.
The 84M cached tokens represent the same context being re-sent 1,289 times because the model lacks persistent memory between turns. Unlike human developers who maintain a mental model of their codebase, Claude Code follows a pattern of: forget everything → re-read everything → write code → forget everything again.
Prompt caching limitations
Anthropic's prompt caching makes this process cheaper but doesn't make it faster. The bottleneck isn't inference speed — it's the re-reading loop. The analysis suggests the real unlock for Claude Code and agentic coding in general would be persistent project memory — not just saved facts via memory files or CLAUDE.md, but a compressed, evolving understanding of the codebase that carries forward across sessions.
Current systems essentially brute-force intelligence through repeated context instead of building understanding. The day this changes could make AI coding genuinely faster by eliminating the need to repeatedly process the same information.
📖 Read the full source: r/ClaudeAI
👀 See Also
Claude Code System Prompts v2.1.139: Claude Platform on AWS Docs, Summarization Security, PowerShell Tooling
CC 2.1.139 (+2,248 tokens) adds Claude Platform on AWS reference docs with SigV4 auth, security-preserving conversation summarization, PowerShell Unix command equivalence table, and several skill/prompt refinements.

Anthropic's Claude for Open Source program grants free Claude Max to qualifying maintainers
Anthropic offers six months of free Claude Max access to open source maintainers whose projects have 5,000+ GitHub stars or 1M+ monthly npm downloads with active commits in the last three months.

US Military Used Claude AI for Iran Strikes Despite Trump Ban
The US military reportedly used Anthropic's Claude AI model for intelligence, target selection, and battlefield simulations during joint US-Israel strikes on Iran, despite Donald Trump ordering federal agencies to stop using Claude hours before the attack.

Xiaomi Open-Sources MiMo-V2.5-Pro: Nears Claude Opus 4.6 on Coding Benchmarks
Xiaomi released MiMo-V2.5-Pro, an open-source coding model that scored 233/233 on a university compiler project, built a video editor autonomously, and ranks within 1% of Claude Opus 4.6 on SWE-Bench and Terminal-Bench.