Claude Code users hitting usage limits 'way faster than expected'
TL;DR Highlight
A prompt cache bug in Anthropic's AI coding assistant Claude Code has been confirmed to cause 10–20x token overconsumption, with users burning through $100–$200/month plans within hours.
Who Should Read
Developers subscribed to Claude Code or Claude Pro/Max plans who use them for everyday development tasks or automated workflows. This is especially critical reading for anyone integrating Claude Code into CI/CD pipelines or repetitive automated tasks.
Core Mechanics
- Anthropic has officially acknowledged the issue, stating that 'users of Claude Code are hitting usage limits much faster than expected, and the team is currently investigating this as a top priority.'
- A user reverse-engineered the Claude Code binary and identified the root cause: when the words 'billing' or 'tokens' appear in a conversation, Claude Code internally replaces certain text, which invalidates the prompt cache (a feature that reuses previous processing results on repeated requests to reduce costs). As a result, the cache is rebuilt from scratch on every request, inflating costs by 10–20x.
- User reports confirm a noticeable difference after downgrading. A specific case was shared where downgrading to version 2.1.34 made a visible difference, and several other users corroborated this.
- A quota policy change compounded the bug. On March 28, Anthropic reduced peak-hour quotas and also ended a promotion that had doubled off-peak usage allowances. These two changes, combined with the bug, appear to have made the perceived burn rate dramatically worse.
- The default prompt cache TTL of only 5 minutes is also a hidden cost factor. Stepping away briefly or pausing work for more than 5 minutes causes the cache to expire, leading to a cost spike on resumption. A 1-hour cache upgrade option exists, but its write cost is 2x the base input token rate, creating a trade-off.
- Warnings have emerged about particular risks in automated workflows. Rate limit errors look like ordinary failures, triggering automatic retries, and users have reported a single session inside a loop consuming an entire daily budget within minutes.
- The opacity of Anthropic's plan limit information makes the problem worse. The Pro plan only states 'at least 5x usage vs. free,' and Standard Team only says '1.25x vs. Pro.' With no way to know actual token or request counts in advance, users have no option but to monitor their dashboard in real time.
Evidence
- "Complaints have emerged that despite the bug being officially confirmed, there has been no mention of refunds or compensation — with the sentiment that 'since it's been verified as a bug, refunds or credits should be warranted, but nothing will happen unless you actively push back,' receiving widespread agreement. Suspicions of intentional A/B testing were also raised but ultimately resolved as a bug; some users suspected it was a deliberate experiment to test user tolerance for reduced limits, but reverse engineering confirmed it as a cache invalidation bug, though distrust of Anthropic's opaque communication style persisted. Criticism of blind loyalty to Claude was also notable, with one comment suggesting 'users probably can't tell the difference if Sonnet and Opus are swapped — it's like preferring a $100 wine over a $10 one without being able to taste the difference,' and some users expressed willingness to try alternative models such as kimi and qwen3-coder-next. A wave of cancellation stories followed, with one user reporting they had been paying $40/month combined for Pro and API plans before canceling last month, noting sessions had been getting progressively shorter since December, to the point where just a few prompts now hits the limit; another user shared the baffling experience of hitting their limit after asking only two questions in a day. Practical tips on context management were also shared, with users noting that while research papers suggest context rot (quality degradation over long conversations) is not a problem, actively managing context in practice improves both quality and cost — and that manually controlling context via the Web UI proved more efficient than using Claude Code."
How to Apply
- "If you are integrating Claude Code into CI/CD pipelines or automation scripts, you must handle rate limit errors explicitly as a separate case. Because rate limit errors currently look identical to ordinary failures, infinite retry loops can occur — so explicitly check the error response type and add backoff logic along with a hard stop condition when the daily budget is exceeded. Downgrading to Claude Code version 2.1.34 can reduce the overconsumption problem in the short term. This can serve as a temporary workaround until a fixed version is released, and real users have reported a noticeable improvement after downgrading. Be careful to avoid the keywords 'billing,' 'token,' and usage-related terms in your conversations. Since the bug is triggered by internal text replacement when these keywords appear — invalidating the cache — you should ensure such words do not appear in system prompts or conversation history, especially in long automated conversations. Parallel-testing alternative models now is a good way to spread risk. Trying models mentioned in the community such as kimi and qwen3-coder-next (which can be run locally) on small-scale tasks and directly comparing quality and cost will help you build a development environment that is less dependent on Anthropic's policy changes."
Terminology
Related Papers
Claude Code sends 33k tokens before reading the prompt; OpenCode sends 7k
동일한 모델과 작업 환경에서 Claude Code와 OpenCode의 실제 토큰 사용량을 API 레벨에서 측정한 결과, Claude Code가 시스템 프롬프트 오버헤드만으로 OpenCode 대비 4.7배 더 많은 토큰을 소비한다는 것을 확인했다.
Mesh LLM: distributed AI computing on iroh
사무실, 집, 클라우드에 흩어진 GPU들을 하나의 OpenAI 호환 API로 묶어주는 분산 LLM 실행 시스템으로, 비싼 API 비용 없이 큰 모델을 직접 운영할 수 있다.
Show HN: Frugon – Find which LLM calls a cheaper model could handle (local, MIT)
내 LLM API 비용이 어디서 새는지 로컬에서 분석해주는 오픈소스 CLI 도구로, 비싼 모델 대신 저렴한 모델로 전환 가능한 호출을 골라낸다.
Jamesob's guide to running SOTA LLMs locally
2천 달러짜리 RTX 3090 한 장부터 4만 달러짜리 RTX PRO 6000 4장 셋업까지, 로컬에서 최신 LLM을 직접 돌리는 방법을 하드웨어 선택·구성·실행 설정까지 통째로 정리한 실전 가이드다.
Faster embeddings: how we rebuilt the ONNX path in Manticore
Manticore Search가 기존 SentenceTransformers/Candle 백엔드를 ONNX Runtime으로 교체해 텍스트 임베딩 생성 속도를 평균 14배 향상시켰다. 별도 모델 서비스 없이 DB 내부에서 직접 임베딩을 처리하는 구조에서 INSERT 속도가 곧 임베딩 속도이기 때문에 이 개선은 실질적인 ingest 처리량 향상으로 직결된다.
Asymmetric Quantization: Near-Lossless Retrieval with 97% Storage Reduction
멀티벡터 검색 모델의 문서 벡터를 1비트 이진값으로 압축하고 쿼리 벡터만 int8로 유지하는 비대칭 양자화 기법으로, 스토리지를 97% 줄이면서 검색 품질 손실을 0.61점(NDCG@10 기준)에 그치게 만든 실제 프로덕션 적용 사례다.
Related Resources
- Anthropic admits Claude Code quotas running out too fast • The Register
- Tweet on cache invalidation bug discovery (reverse engineering findings)
- Reddit ClaudeCode community - Anthropic official investigation announcement thread
- Reddit ClaudeAI community - Usage limit issue discussion
- Substack post on the opacity of AI credit systems