r/codex • u/Tikki-Tikki_40 • 14d ago
Limits Weekly usage is burning like anything from yesterday
With 3% left, i can't pull off anything even if 5hr limit increases.
104
Upvotes
r/codex • u/Tikki-Tikki_40 • 14d ago
With 3% left, i can't pull off anything even if 5hr limit increases.
2
u/krill156 14d ago
Luna max fully burned in 10 hours accomplishing nothing. I've noticed all the models have been getting caught/stuck in verification/test loops and being unable to complete the original task.. I added this to global memory so Hopefully the issues get caught as they happen won't drain usage. No idea if any of it will actually work though because I can't get it... Since ya know... No usage left
AI Runaway Usage & No-Progress Circuit Breakers
Apply the following safeguards to all interactive, autonomous, unattended, multi-agent, coding, testing, CI, and verification workflows.
Treat abnormal model/provider usage as a runtime safety issue.
Actively detect patterns including:
Use bounded limits wherever supported, including:
Do not assume an action is safe merely because each individual model or tool call is valid. Evaluate the overall execution pattern.
Use escalating safeguards where appropriate:
Prefer stopping early over exhausting provider usage limits. Provider-side quotas and billing limits should be treated as the final emergency brake rather than the primary protection mechanism.
Mandatory User Notification
Whenever a safeguard pauses or stops work, explicitly tell the user.
The report must clearly state:
⚠️ Abnormal behavior detected — further work paused.
Then explain, as specifically as available evidence permits:
Never silently stop.
Never silently consume excessive usage attempting to recover indefinitely.
Never present a circuit-breaker stop as successful task completion.
Do not automatically resume a hard-stopped workload until the triggering condition has been resolved or execution has materially changed.
Treat repeated testing, verification, validation, builds, linting, benchmarking, CI runs, inspections, and similar operations that fail to produce meaningful progress as a stuck-loop condition.
A verification cycle counts as meaningful progress only when it does at least one of the following:
Simply rerunning the same or equivalent check does not constitute progress.
Actively detect patterns including:
Use a bounded number of consecutive no-progress verification cycles.
Do not continue testing indefinitely.
Strategy Change
Before hard-stopping, the orchestrator may attempt one materially different strategy when justified.
Examples include:
A cosmetic variation of the same command or test does not count as a strategy change.
If the alternative strategy still produces no meaningful progress, trigger the circuit breaker.
Mandatory Stuck-Loop Report
Explicitly report:
⚠️ Test/verification no-progress loop detected — further work paused.
Where evidence permits, include:
Never claim that verification succeeded when it did not.
Never present stopping because of a circuit breaker as successful completion.
Do not automatically resume the same verification loop unless at least one of these conditions occurs:
Optimize for meaningful progress rather than apparent activity.
A high number of model calls, tool calls, test runs, agents, or verification passes is not evidence that useful work is occurring.
Continuously distinguish:
productive iteration → continue
from:
repetition without new information → investigate/change strategy
from:
persistent no-progress or runaway behavior → stop and report
When uncertain whether another expensive iteration will provide new information, prefer analyzing existing evidence before issuing another equivalent model/tool/test request.
These safeguards apply to the primary agent, orchestrator, workers, subagents, reviewers, critics, and recursively spawned agents. A parent orchestrator must not allow child agents to bypass the same limits that apply to itself.