code-reviewlisted
Install: claude install-skill matthull/my-skills
# /code-review — Structured Multi-Leg Code Review
Parallel specialist review agents, each in a fresh subagent context with a narrow focus and concrete checklist. Adapts to the codebase via `/skill-discovery` — loads domain skills (ruby-on-rails, vue, api-integration, etc.) based on changed files to inject project-specific review criteria.
## Usage
```
/code-review # all legs, current branch diff to default branch
/code-review current branch diff to master # explicit target description
/code-review --legs=security,wiring,test-quality # specific legs only
/code-review --branch=feature-branch # explicit branch
/code-review src/components/ # specific directory
```
**Default behavior:** Run ALL legs in parallel against current branch diff to default branch.
**To limit:** Use `--legs=` with comma-separated leg names.
## Process
### Step 1: Determine Review Target
Parse `$ARGUMENTS` for:
- **Legs filter** — value after `--legs=` (comma-separated list). If omitted, run ALL legs.
- **Branch** — value after `--branch=` (diff against default branch)
- **Target** — remaining args (file path, directory, or description like "current branch diff to master")
Get the diff:
- If `--branch` or "branch" mentioned: `git diff {default-branch}...{branch}`
- If target is a path: `git diff -- {path}` or read files directly
- If no specific target: `git diff {default-branch}...HEAD` (current