codex-review
Codex Review executes AI-powered code analysis through the codex CLI tool, supporting review of uncommitted changes, specific commits, or code against a base branch. Use this skill when users request code review functionality, specifying the target scope through flags like `--uncommitted`, `--base`, or `--commit`, optionally providing custom review prompts to focus on particular concerns such as security or error handling.
git clone --depth 1 https://github.com/tobihagemann/turbo /tmp/codex-review && cp -r /tmp/codex-review/claude/skills/codex-review ~/.claude/skills/codex-reviewSKILL.md
# Codex Review AI-powered code review via the codex CLI. Runs non-interactively. ## Uncommitted Changes ```bash codex review --uncommitted ``` ## Against a Base Branch ```bash codex review --base main codex review --base develop ``` ## Specific Commit ```bash codex review --commit <sha> codex review --commit HEAD~1 ``` ## Custom Prompt Cannot be combined with `--uncommitted`, `--base`, or `--commit`. ```bash codex review "Focus on security issues and error handling" ``` ## Options - Use `--title` to add context when reviewing feature branches or PRs - Run via the Bash tool (`timeout: 3600000`, do not set `run_in_background`)
For each reviewer question on a PR, recall implementation reasoning and compose a raw answer. Use when the user asks to \"answer reviewer questions\", \"draft answers to PR questions\", or \"explain reviewer questions\".
Apply findings by making the suggested code changes. Applies accepted verdicts, escalates ambiguous findings to the user, and offers to note genuine improvements for later. Use when the user asks to \"apply findings\", \"apply fixes\", \"apply suggestions\", \"apply accepted findings\", \"fix the findings\", or \"apply the review results\".
Project-wide health audit pipeline that fans out to all analysis skills in parallel, evaluates findings, and produces a unified report at .turbo/audit.md. Use when the user asks to \"audit the project\", \"run a full audit\", \"project health check\", \"audit my code\", \"codebase audit\", or \"comprehensive review\".
Shared changelog conventions and formatting rules referenced by $create-changelog and $update-changelog. Not typically invoked directly.
Enforce mirror, reuse, and symmetry principles to keep new code consistent with surrounding code. Use when writing new code in an existing codebase, adding new features, refactoring, or making any code changes.
Run autonomous task execution using the codex CLI. Use when the user asks to \"codex exec\", \"run codex exec\", \"execute a task with codex\", or \"delegate to codex\".
Shared commit message rules and technical constraints referenced by $stage-commit and $commit-staged. Not typically invoked directly.
Commit already-staged changes and push in one step. Use when the user asks to \"commit and push staged changes\", \"commit and push what's staged\", or \"commit staged and push\".