code-review
Installation
SKILL.md
Code Review
Parallel, multi-angle code review: simplicity & elegance, bugs & correctness, conventions & security. Reports only high-confidence issues, grouped by severity.
Quick start
/code-review — reviews recently changed code (unstaged + staged changes)
/code-review src/auth/ — reviews a specific directory
/code-review #123 — reviews a pull request by number
Process
Step 1: Identify scope
Determine what to review:
- If a PR number is given — fetch the diff with
gh pr diff. - If a path is given — read the files at that path.
- If no argument — run
git diff HEADto find recently changed code. If no changes, ask the user what to review.