← ClaudeAtlas

pr-review-statuslisted

Find out what the AI reviewer said about a pull request, and respond to it. The hosted OpenAI Codex reviewer is invisible to CI — it appears in no status check — so `gh pr checks` being green says nothing about whether a review ran, is still running, or left findings. Use after pushing to a PR and before reporting the work as done, when deciding whether a re-review is worth its rate limit, and when replying to or resolving a review thread. Not for reviewing a diff yourself — that is `iroha-review`.
iroha924/iroha · ★ 0 · Code & Development · score 67
Install: claude install-skill iroha924/iroha
# Reading and answering the AI reviewer on a PR **Codex is the only AI reviewer running.** Greptile is disabled, and Gemini Code Assist is not an option: Google shut its consumer GitHub app down on 2026-07-17 and named no replacement ([deprecation notice](https://developers.google.com/gemini-code-assist/docs/deprecations/consumer-code-review)). Do not wait for a "Greptile Review" check that will never appear — the Greptile section at the bottom is kept for the day it is re-enabled and should not be acted on until then. ## 1. Find Codex's state Codex appears in **no GitHub status check** (the official docs position it as separate from CI: "Leave mechanical checks in CI"), so nothing notifies you and `gh pr checks` never shows it. Poll it. ```bash # Reaction state: eyes = reviewing, +1 = done/clean gh api repos/iroha924/iroha/issues/<PR>/reactions \ --jq '.[] | select(.user.login=="chatgpt-codex-connector[bot]") | .content' # The posted review, including its summary body — `/comments` returns only the # inline threads, so dropping `body` here loses the verdict-level guidance entirely gh api repos/iroha924/iroha/pulls/<PR>/reviews \ --jq '.[] | select(.user.login=="chatgpt-codex-connector[bot]") | {state, submitted_at, body}' # The findings themselves gh api repos/iroha924/iroha/pulls/<PR>/comments --jq '.[] | {user: .user.login, path, line, body}' ``` Reading the result: - **👀 means a review is in progress.** Do not treat the PR as reviewed and do not merge while it