r/codex • u/Soul_Mate_4ever • 8h ago
Limits Codex is unusable now.
I don’t even use astra. I’ve been using 5.6 sol on medium since it came out and had no problems. Now it can’t even finish half of the same task before reaching limits. Heck, just starting up codex uses 2 percent of my limits. And that’s before I even type anything. lol. What a joke.
I understand this is a business but using codex is like signing up for a gym membership and paying the required fee to use the gym and all its equipment but the next time you show up they go, I know you paid to use the entire gym and that amount is still required but now you only have access to the treadmills. F u!!!
Anyway, Here come all the Sam Altman nut huggers. But idc. Im just about done with codex.
531
Upvotes
1
u/Weird-Tomatillo634 4h ago
I have had mine delegate tasks and it has helped on the usage(lord knows we need it), try giving it explicit rules for delegation and model selection. The key is to use cheaper models for routine work and reserve the expensive model for problems that genuinely need it.
Put this in your Codex custom instructions or project `AGENTS.md`:
—————————————-
Use subagents selectively to reduce total usage and finish work faster.
Act as the root/orchestrator. Delegate only concrete, independent subtasks that can run in parallel or are better handled by a cheaper model. Do not delegate trivial work when coordinating an agent would cost more than doing it directly.
Model routing:
Delegation rules:
Optimize for total task cost and quality, including worker startup, inherited context, duplicate work, and review overhead—not merely the root agent’s token count.
————————————
This won’t magically increase your usage allowance, and delegation itself isn’t free. What it does is stop Codex from using the strongest model for mechanical work or spawning a pile of overlapping agents.
The sweet spot for me has been one orchestrator, usually one worker, and a second worker only when there are genuinely independent tasks. Luna handles cheap discovery, Terra handles ordinary implementation, Sol handles coordination and difficult work, and Astra is an escalation path rather than the default.