review
Installation
SKILL.md
Code Review
Structured two-pass code review with Fix-First approach. Supports branch diffs, staged, and uncommitted changes. Integrates with code-quality skill standards.
Arguments
--base <branch>: Override base branch (default: auto-detect viaghormain/master)--scope <branch|staged|uncommitted>: Control what diff to review (default: auto-detect)branch: committed diff between current branch and base — requires feature branchstaged: only staged changes (git diff --cached) — useful before committinguncommitted: all working tree changes (git diff --cached+git diff)
--fix: Auto-fix mode — apply mechanical fixes without asking--report-only: Report only, no fixes--peer: Spawn a parallel Codex CLI peer review via background Agent (requirescodex-plugin-cc)- No arguments: default interactive mode (auto-fix mechanical, ask for judgment calls)
Auto-trigger rule: When the user asks to create/open/submit a PR, run /review --peer first. Address findings before proceeding with PR creation.