codex-review
Installation
SKILL.md
Codex-Review — Adversarial Plan-Review Loop
Two models, one plan, a bounded argument. Claude is the builder and orchestrator. Codex is a read-only critic that can read the repo and the plan but cannot touch a single file. They communicate strictly through PLAN.md + a Codex session that persists across rounds. The human enters at exactly two points: kickoff and final sign-off.
This is a deliberate, high-stakes tool — reach for it on auth, data models, concurrency, migrations, payments, anything expensive to get wrong. Skip it for obvious/cheap work.
Prerequisites (verify once, fast)
- Codex CLI installed and recent:
codex --version(need ≥ 0.130; the defaultgpt-5.5model errors on older CLIs). - Codex authenticated: a prior
codex login(ChatGPT account is fine). If a run returns an auth/model error, surface it to the user — do not silently retry. - Do NOT pin
-munless the user asks. The user's~/.codex/config.tomldefault model is used. Pinninggpt-5.x-codexvariants fails on ChatGPT-account auth. - Sandbox flag differs between the two commands.
codex execaccepts-s read-only.codex exec resumedoes NOT — it rejects-s("unexpected argument"). On resume you MUST force read-only via-c sandbox_mode="read-only", becauseconfig.tomlmay defaultsandbox_modetodanger-full-access(+approval_policy="never") — which would let Codex WRITE files mid-loop. This is the single most important safety detail in this skill: verified end-to-end on 2026-06-04.