← ClaudeAtlas

codex-reviewlisted

Runs a single Codex (ChatGPT/OpenAI) review check-fix cycle on a PR using gh CLI. Use this skill whenever the user wants to: check and fix Codex review comments, request a Codex code review on a PR, or iterate on PR feedback from the chatgpt-codex-connector bot. Trigger on phrases like 'codex review', '@codex review', 'fix codex comments', 'iterate on PR', 're-review with codex', or when the user mentions 'gh pr' with 'codex'. Combine with /loop for automated repeated cycles, e.g. '/loop 2m /codex-review'.
appleboy/skills · ★ 0 · AI & Automation · score 60
Install: claude install-skill appleboy/skills
# Codex Review A single-pass check-fix cycle for Codex (the `chatgpt-codex-connector` GitHub bot) review comments. Designed to be called repeatedly via `/loop`: ``` /loop 2m /codex-review ``` Each invocation runs one iteration: check for Codex's verdict → fix unresolved comments → push → resolve → re-trigger review. The loop terminates ONLY when Codex's latest result (for the latest commit) says `"Didn't find any major issues"`. ## How Codex differs from other PR reviewers Codex stamps every result with the commit it reviewed — `**Reviewed commit:** \`<sha>\``. This is the authoritative signal for "did it review my latest push?", which makes the timing logic far more reliable than timestamp guessing. Two more quirks to internalize: - Codex is triggered by an **issue comment** (`@codex review`), not by adding a reviewer. - Codex's "all clear" verdict arrives as a plain **issue comment** with a 👍 (`"Didn't find any major issues"`), while its "found issues" verdict arrives as a **PR review** with inline threads. So you must look in **both** places and pick the most recent by time. ## Prerequisites - `gh` CLI v2.88.0+ - Authenticated: `gh auth status` - Codex enabled for the repo (team-level setting at chatgpt.com/codex). Free tiers/forks may not have it. --- ## Steps ### 1. Detect the PR If the user provides a PR number and repo, use those directly. Otherwise, auto-detect from the current branch: ```bash gh pr view --json number,url,headRepository -q ' "PR #\(.nu