From sundial-org-awesome-openclaw-skills-4
Check OpenAI Codex CLI rate limit status (daily/weekly quotas) using local session logs. Portable Python script.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:codex-quotaThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Check OpenAI Codex CLI rate limit status.
Check OpenAI Codex CLI rate limit status.
# Run the included Python script
./codex-quota.py
# Or if installed to PATH
codex-quota
codex-quota # Show current quota (cached from latest session)
codex-quota --fresh # Ping Codex first for live data
codex-quota --all # Update all accounts, save to /tmp/codex-quota-all.json
codex-quota --json # Output as JSON
codex-quota --help # Show help
Copy codex-quota.py to your path:
cp skills/codex-quota/codex-quota.py ~/bin/codex-quota
chmod +x ~/bin/codex-quota
Codex CLI logs rate limit info in every session file (~/.codex/sessions/YYYY/MM/DD/*.jsonl) as part of token_count events. This tool:
rate_limits objectnpx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4Checks Claude Code OAuth usage limits for session (5-hour) and weekly (7-day) windows with smart caching, progress bars, and JSON output.
Reports rate-limited 5-hour windows from cached timeline data to GitHub Discussions. Use when hitting Claude rate limits to contribute data for reverse-engineering Anthropic's formula.
Analyzes local Claude Code token usage, cost, quota burn, model mix, and cache metrics using ccusage data. Answers why quota was exhausted or which model is expensive.