| name | full-review |
| description | Launch all 9 review agents in parallel for a thorough code review |
Run a comprehensive code review by launching all review agents in parallel.
First, run git diff master...HEAD to get the full diff. Pass the complete diff output to each agent so they know exactly which files and lines changed.
Spawn each of the following agents in the background without worktree isolation, asking each to review changes on the current branch vs the main branch. These agents are read-only reviewers and do not need isolated worktrees. Launching 9 worktrees in parallel causes git lock contention on .git/config, leading to failures and retries. IMPORTANT: Include the diff output in each agent's prompt and instruct them to ONLY review files and lines that appear in the diff — they must not explore or report on files outside the changeset:
- @security-reviewer
- @performance-reviewer
- @test-reviewer
- @error-handling-reviewer
- @concurrency-reviewer
- @api-contract-reviewer
- @db-query-reviewer
- @db-schema-reviewer
- @integration-reviewer
Additional focus areas if specified: $ARGUMENTS
Once all agents complete, compile their findings into a single summary organized by severity:
- Critical - must fix before merge
- High - should fix before merge
- Medium - consider fixing
- Low - optional improvements
Include file:line references for every finding.