Self-heal codex quota walls via CODEX_GATEWAY_POOL rotation#41
Merged
Conversation
When a review dies on the plan's usage limit, advance the gateway hostname in ~/.codex/config.toml to the next CODEX_GATEWAY_POOL entry (ordered ring of interchangeable ChatGPT-account gateways; unset = off, current behavior). Codex re-reads the file each sweep, so the next sweep lands on the fresh account — no probing, no restarts, one step per CODEX_ROTATE_COOLDOWN_MIN. Same env contract bunion and earshot rotate on via @bevyl-ai/agent-tools; inlined (~25 lines) to keep this engine dependency-free.
3182dbc to
7d3a822
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When a review dies rate-limited (the existing
used === 'limit'path), the sweep now advances the gateway hostname in~/.codex/config.tomlto the next entry inCODEX_GATEWAY_POOL(an ordered ring of interchangeable ChatGPT-account gateways, e.g. exe.devllmintegrations). Codex re-reads the config each sweep, so the next sweep runs on the fresh account.CODEX_ROTATE_COOLDOWN_MIN, default 10) so a fully-drained pool cycles calmly.@bevyl-ai/agent-tools; inlined here (~25 lines) to keep the engine dependency-free.Tests cover ring advance + wrap, cooldown suppress/re-arm, pool-off, and foreign-config no-touch — real temp files, no mocks.