codex-rate-limits-plugin is a standalone repository for the codex-rate-limits Codex plugin.
The plugin reports current Codex ChatGPT subscription rate-limit windows by querying the local codex app-server JSON-RPC API and formatting the 5h and Weekly windows for quick answers.
plugins/codex-rate-limits/- the installable local plugin package.plugins/codex-rate-limits/skills/check-codex-rate-limits/- the skill definition, helper script, and protocol reference.docs/ARCHITECTURE.md- the canonical runtime design, constraints, and compatibility notes.docs/DISTRIBUTION.md- the canonical packaging and rollout guidance..agents/plugins/marketplace.json- a repo-local marketplace entry for plugin discovery during development.
Run the bundled helper directly:
python3 plugins/codex-rate-limits/skills/check-codex-rate-limits/scripts/read_rate_limits.py --utcIf you want JSON output:
python3 plugins/codex-rate-limits/skills/check-codex-rate-limits/scripts/read_rate_limits.py --json --utcRun the repo validation entrypoints:
python3 scripts/quality.py ci
python3 scripts/quality.py localSyntax-check the packaged helper:
python3 -m py_compile plugins/codex-rate-limits/skills/check-codex-rate-limits/scripts/read_rate_limits.pyTest the unsupported/no-auth path:
python3 scripts/quality.py localFor live authenticated validation and prompt-routing checks, use docs/TESTING.md.
plugins/codex-rate-limits/.codex-plugin/plugin.json- local plugin manifest.plugins/codex-rate-limits/skills/check-codex-rate-limits/SKILL.md- skill definition for checking rate limits.plugins/codex-rate-limits/skills/check-codex-rate-limits/scripts/read_rate_limits.py- packaged helper that makes the JSON-RPC call.plugins/codex-rate-limits/skills/check-codex-rate-limits/references/app-server-contract.md- protocol reference for the local app-server API.