Codex code review has a usage quota, and when it runs out a PR can merge without its pass (this happened on PR #39: the re-review after the left-edge fix never ran).
Task: a script (e.g. scripts/codex-review-audit.sh or a small Rust/Python tool) that walks all PRs in the repo via the GitHub API and lists the ones Codex never reviewed (no review and no inline comments from chatgpt-codex-connector[bot] on the head commit), so they can be revisited — e.g. by commenting @codex review once quota returns.
Sketch:
- list merged/open PRs;
- for each, check reviews + review comments for the Codex bot, and whether the latest commit was covered (
Reviewed commit: <sha> in the bot's summary comment);
- output a table of PRs needing a visit, optionally post
@codex review with a --fix flag.
Origin: session of 2026-06-11, after the Codex quota ran out on PR #39.
Codex code review has a usage quota, and when it runs out a PR can merge without its pass (this happened on PR #39: the re-review after the left-edge fix never ran).
Task: a script (e.g.
scripts/codex-review-audit.shor a small Rust/Python tool) that walks all PRs in the repo via the GitHub API and lists the ones Codex never reviewed (no review and no inline comments fromchatgpt-codex-connector[bot]on the head commit), so they can be revisited — e.g. by commenting@codex reviewonce quota returns.Sketch:
Reviewed commit: <sha>in the bot's summary comment);@codex reviewwith a--fixflag.Origin: session of 2026-06-11, after the Codex quota ran out on PR #39.