pr-review-statuslisted
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