Token Waste in Claude Code: A User's Self-Audit Shows Behavioral Fixes Beat Model Switching

A Reddit user spent a week measuring where their Claude Code tokens actually went, rather than just complaining about the May price changes. Their conclusion: most burn was self-inflicted, and behavioral changes bought back more headroom than switching models would have.
Biggest Wins
/clearbetween unrelated tasks — a stale 200k-token context riding along for a one-line fix was the single most expensive habit.- Make it plan before it touches files. One planning pass, then execute — cheaper and better than explore-edit-explore in a loop.
- Stop letting it re-read files it just touched. If it just edited a file, it does not need to reopen it to "verify." Say so once in your rules.
- Search with a subagent, not the main thread. Grep-and-read across a repo dumps the whole haystack into your main context permanently. A subagent returns just the answer.
- Kill always-on and
-ploops you are not watching. Background agents burning tokens while you sleep are most of the horror-story bills.
None of these fixes required a new subscription, a wrapper, or an MCP server. It was discipline the user admits being too lazy to apply while limits felt infinite.
The post acknowledges that none of this fixes the actual price hikes — it just stops you burning extra on top of them.
📖 Read the full source: r/ClaudeAI
👀 See Also

35 Days of Claude Code: Why 3 Parallel Agents Is the Real Ceiling
Analysis of 1,800+ Claude Code turns shows the bottleneck isn't context—it's human join capacity. A simple formula N ≈ 1 / (fraction of time waiting on you) explains the wall at 3 agents.

Multi-Agent Orchestration in OpenClaw: Centralize Rules, Spawn Sub-Agents
An OpenClaw user describes moving from duplicated workspace instructions to a single main agent that spawns sub-agents, enforcing architectural rules (e.g., persist structured data as .JSON) across all agent workspaces.

Claude Code Plugin Bug Causes Skills to Load Twice, Increasing Context Compaction
A bug in Claude Code causes plugins to load every skill twice due to stale cache directories and symlink duplication, significantly increasing system prompt size and triggering frequent context compaction. The source provides check scripts to identify the issue and fix scripts to remove stale plugin versions and duplicate symlinks.

Using a GAN-style prompt to improve Claude's critical thinking
A Reddit user shares a specific sentence to prompt Claude to adopt a GAN-style thinking framework, forcing it to critique and pressure-test ideas instead of providing agreeable surface-level responses.