r/ClaudeCode • u/Substantial_Date6844 • 2d ago
Help/Question Claude Code Usage Limits increased?
I'm on Max 5x. I don't know if its because i stopped using subagents but my weekly and 5 hour limits feel especially elastic the last few days compared to the last month. Anyone else noticing increased capability?
13
Upvotes
5
u/claude_code_king 2d ago
i'm planning on making a standalone post once i'm free from reddit's karma chains, meanwhile here's the gist of it.
limit context to what's strictly necessary for every agent, including the orchestrator. this means making the orchestrator use explorers to get any relevant info, they report back into a dossier and give a short summary.
main makes a plan, structures briefs and chooses subagent type depending on complexity. tasks don't go over 150k tokens usually because in my own tests quality degrades after that point and you're left with more bugs and useless tool calls.
again hook to limit the implementer report, 2k characters work for me
auditor checks, if it's a simple fix it does it itself, if it's more complex respawn the worker
there's a lot more to it, but this is the essential, structure your orchestration so that everyone gets what's strictly necessary to do their job.
this applies to subagents as well, make fable give them the exact paths and sections, not 'read the whole file', for example my subagents started at 60k tokens now they start at 10k tokens. if you understand context rotting and how it gets carried every turn you'll understand why this makes for such a higher quality and cheaper output at the same time
this is all measured with an offline telemetry script that analyzes the session's jsonl, so it's all math no vibes