From codex-review
Use when the user asks to "review code with codex", "run a codex review", "review my changes", "review this commit", "review my branch", or wants OpenAI Codex to review code changes. Provides automated code review using the Codex CLI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/codex-review:codex-reviewThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run automated code reviews using OpenAI Codex CLI (`codex exec review`).
Run automated code reviews using OpenAI Codex CLI (codex exec review).
This skill is the single source of truth for the on-demand review workflow;
the /codex-review slash command delegates here.
Honor $CODEX_BIN if set; otherwise the codex binary must be on $PATH.
See the plugin README for installation. All invocations below use
"${CODEX_BIN:-codex}".
"${CODEX_BIN:-codex}" exec review --commit <SHA> --full-auto
"${CODEX_BIN:-codex}" exec review --uncommitted --full-auto
"${CODEX_BIN:-codex}" exec review --base <branch> --full-auto
Note: --commit, --uncommitted, and --base are mutually exclusive
with custom prompt arguments. Codex uses its own built-in review logic.
Whether invoked via /codex-review <args> or natural language, map the
request to a mode like this:
--commit $(git rev-parse HEAD)--commit <sha>) → --commit <sha>--uncommitted, or the user says "working changes" / "uncommitted" → --uncommitted--base <branch>, or the user names a base branch → --base <branch>Determine what to review (see Argument Mapping above)
Run the codex review command
Parse the output for issues:
If issues are found and the user wants fixes:
Codex review outputs structured comments with priority levels:
The hook considers [P1] and [P2] issues as failures requiring fixes.
npx claudepluginhub andreidavid/codex-review --plugin codex-reviewCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.