Excessive token consumption after recent updates (Max plan)
Bug Description
After recent Claude Code updates, token consumption has become disproportionately high. Tasks that previously consumed a reasonable amount of tokens are now using significantly more, making the tool impractical even on the Max plan.
Environment
- Plan: Claude Max (5x usage)
- Platform: Linux (WSL2)
- Claude Code version: Latest
- Model: Claude Opus 4.6 (1M context)
Expected Behavior
Token consumption should be proportional to the complexity of the task being performed. Previous versions maintained reasonable consumption levels.
Actual Behavior
Token usage has increased dramatically after recent updates. The consumption is disproportionate to the work being done, causing rapid exhaustion of the daily token budget even on the Max plan.
Steps to Reproduce
- Use Claude Code normally for development tasks
- Observe token consumption in the usage dashboard
- Compare with consumption levels from ~2-3 weeks ago for similar tasks
Additional Context
This appears to have started with recent Claude Code updates. The issue seems systemic rather than task-specific — all interactions consume more tokens than before, suggesting a platform-level change in how tokens are being counted or consumed.
Would appreciate investigation into whether there have been changes to token accounting, context management, or prompt overhead that could explain this increase.
18 Comments
https://github.com/anthropics/claude-code/issues/38335#issuecomment-4163393947
i was looking for this. i finished 5hrs token in 1hr an a half on a single session on the max plan.
In previous weeks by using 3 parallel sessions i would finish them after 4 hours and 50 min.
this bug is huge!
/claude-md-management:revise-claude-md just ate up 27% of my session budget. Prompting "hi" took another 2% and just exiting and resuming the session 5%. I'm on a pro plan using mac OS.
use this https://github.com/moltcode/moltcode I just disable all the mcp bs, I mostly don't need it. It's pointless keep em lingering. use those mcp clis why bother pay for those 100 levels of mcps configuration
But honestly .88 has problem, It consumed my last 10 percent last week, like in once 5 hour window in 15 minues, I downgraded to 77
The excessive token consumption after recent updates is likely caused by multiple compounding factors. Here are hook-based mitigations that can significantly reduce token usage:
1. Disable deferred tool loading (biggest single impact):
Add to
~/.claude/settings.json:Deferred tools inject tool schemas dynamically, which can invalidate the prompt cache prefix. Disabling this prevents mid-session cache breaks.
2. Hook to block reads of excessively large files:
This prevents Claude from dumping large files into context, which is a common token waste pattern.
3. Use
/compactproactively:When context grows large, especially before switching topics within a session, use
/compactto reset the conversation. This rebuilds the cache cleanly.4. Avoid
--resume(known cache-breaking trigger):Session resume (
--resume) is known to cause cache misses (see #40524). Start fresh sessions when possible. If you must resume, expect a one-time cache rebuild cost.5. Check for the
cch=cache poisoning bug (#40652):If Claude has read its own session files or proxy logs during a session, the
cch=billing header substitution can permanently break cache for that conversation. Start a new session if you suspect this.The core issue appears to be prompt cache invalidation from tool schema changes and billing header mutations — a compounding effect that gets worse in longer sessions.
Same issue. Max 20, v2.1.89, April 1. 100% in ~70 min after reset with light usage.
Full report: #41788
Related: #38335, #38239, #40790, #6457, #40895, #41055, #38345, #41174, #41550, #41663, #41779, #41802
I've been experiencing the same issue on Max 20 ($200/mo) — rate limit 100% exhausted in ~70 minutes.
After setting up a monitoring proxy using the official
ANTHROPIC_BASE_URLenv var, I identified two cache bugs as the root cause (#40524, #34629) and measured the impact: cache read ratio dropped to 4.3%, meaning ~20x token inflation per turn. After applying workarounds it stabilized at 89-99%.Full analysis with per-request measured data, safe workarounds, and community references (including cc-cache-fix): https://github.com/ArkNill/claude-code-cache-analysis
5 hours of Claude Code quota gone in 15 minutes. Amazing. Really worth the money. Refund me.
Experiencing the same issue. Max 5x plan, Opus 4.6 (1M context), macOS.
Timeline: Token consumption spiked starting March 31, coinciding with the 2.1.88 update. Previously the same workflow was fine.
Reproduction:
Environment details:
alwaysThinkingEnabled: true,effortLevel: highObservations:
Follow-up — precautions to reduce drain (April 2, 2026)
@keefar Your
/claude-md-management:revise-claude-mdeating 27% is consistent with what I'm seeing — skills/slash commands that rewrite files trigger large context rebuilds. Combined with broken cache, that's an expensive operation.Here's what to avoid and what helps:
Avoid:
--resume— replays full history as billable input (500K+ tokens on long sessions)/dream,/insights— background token consumptionBe careful with:
Helps:
ANTHROPIC_BASE_URL)Ref: https://github.com/ArkNill/claude-code-cache-analysis
Update (April 2): v2.1.90 has significantly improved cache efficiency — benchmark shows 95-99% cache read in stable sessions (both npm and standalone installations).
If you're still affected:
claude update(ornpm install -g @anthropic-ai/claude-code)"DISABLE_AUTOUPDATER": "1"to~/.claude/settings.jsonenv section--resume(still broken)Note: server-side quota issues (org-level pool sharing, accounting mismatches) remain unresolved — the above fixes the client-side cache drain only.
Benchmark data: https://github.com/ArkNill/claude-code-cache-analysis
Confirming this issue. Max plan subscriber here, running multiple Claude Code sessions on a Linux server for a food processing business.
After updating to v2.1.90 today, the token consumption is still disproportionately high. The same workflows that ran fine a few weeks ago now drain the session budget extremely fast.
The bigger problem: there is no way to measure or monitor token consumption per message. We're flying completely blind. The usage dashboard only shows a percentage bar with no breakdown of what consumed what. For a $100-200/month subscription, this level of opacity is unacceptable.
Additionally, as a European user (Germany), my entire working day (8 AM – 6 PM CET) falls within Anthropic's defined peak hours, which means the peak-hour throttling hits me during 100% of my productive time. There is no realistic way to "shift to off-peak hours" when you're running a business.
What we need:
Environment:
@RegioFrucht Thanks for confirming the issue persists on v2.1.90. At this point, evidence is accumulating that the cache fix alone doesn't resolve all cases. If your workflow involves sub-agent spawning or long sessions, you may be hitting the client-side rate limiter bug (#40584) or a server-side accounting change (#37394). Monitoring your cache read ratio via a logging proxy would help isolate which layer is still causing the drain.
Brief update (April 3): v2.1.91 is out and cache behavior is further improved — npm and standalone now perform identically (Sentinel gap closed). However, testing revealed two additional unfixed bugs: a 200K tool result budget cap that silently truncates older results, and a client-side false rate limiter generating
<synthetic>errors without API calls (151 entries confirmed). If you are still seeing drain after updating, these are the likely causes. Details: claude-code-cache-analysisthink the real problem here isn’t tokens, but noise
claude ends up reading too much irrelevant output, so quality drops
filtering what actually matters works way better than just compressing
been trying this: https://github.com/fajarhide/omni
I'm wondering about the tool usage and excessive permissions request overhead and impact to token consumption as well, in that claude writes internal scripts, and then asks for permission over and over again in a way that doesn't allow me to grant "for anything like this". Claude generated the content, created the scripts for analysis, and then asks over and over in a full screen dump of code output for permission. This seems to be excessively wasteful. Even after working with it to open up /permissions this still prompts with full page dumps.
Example:
When going back and analyzing the 10 hour working session the volume of activity seems bloated/skewed
I have to say, the context-mode plugin is doing a great job reducing overhead (MCP) in context consumption for claude code... From a working session today (Opus 4.8) this is the stats reported on reduction of tokens passed... from the /ctx-stats plugin command (portion of the output). There was no /compact, a new shell was started continuing the work (using a durable-task-manager skill we implemented in our private plugin marketplace) that recovers context and continues work, the call to context-mode looks like an after compact recovery/read...
─── 1. Where you are now ───
This conversation started 3 Jun 2026 at 08:12 (America/Denver) in ~/synnepha/projects/synnepha-demo.
9 hr alive · still going.
Without context-mode 11.1 MB ████████████████████████████████ 2.9M tokens
With context-mode 432 KB █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 110.6K tokens
96% kept out of context · your AI ran 26× longer before /compact fired