review
Multi-agent parallel code review against the base branch
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Multi-agent parallel code review against the base branch
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Process issues sequentially: /dev per issue in isolated sub-agent → CI wait → merge → next
E2E development: investigate → dig → decompose → implement → test → review → PR
Break a task into ordered subtasks with dependencies
Investigate codebase for an issue in a forked context (context isolation)
Clarify ambiguities in plans with structured questions and auto-decide rules
Audit codebase for tech debt, code quality, and architecture issues — then create GitHub Issues
| name | review |
| description | Multi-agent parallel code review against the base branch |
| user-invocable | true |
| allowed-tools | ["Read","Glob","Grep","Agent","Bash(git diff:*)","Bash(git log:*)","Bash(git status)","Bash(gh pr view:*)"] |
Review the current branch's changes against the base branch using parallel review agents.
main or master) and current branchgit log — commits on this branchgit diff {base}...HEAD — full changesetgh pr view --json body — PR description (if available)&&Launch two review agents in parallel (model: sonnet):
Review the changed files for bugs, logic errors, and security issues.
Read REVIEW.md (if exists) or .claude/rules/ for review criteria.
Focus areas:
- Null safety violations
- Concurrency issues
- Error handling gaps
- Security: hardcoded secrets, input sanitization, data exposure
- Platform compatibility
- Performance: memory leaks, main thread blocking, redundant calls
For each finding: [file:line] severity — description
Severity: Critical / Warning / Suggestion / Nit
Review the changed files for architecture and code quality.
Read REVIEW.md (if exists) or .claude/rules/ for review criteria.
Focus areas:
- Architecture: SRP, layer boundaries, dependency direction
- Design patterns: consistency with existing codebase
- Testing: changed code has corresponding test updates
- Naming and readability
- Unnecessary complexity or over-engineering
For each finding: [file:line] severity — description
Severity: Critical / Warning / Suggestion / Nit
Check .claude/agents/ for project-specific reviewer agents (e.g., kmp-reviewer, ui-reviewer). If found, launch them in parallel with Agents A and B.
## Review Summary
**Branch:** {current} → {base}
**Files changed:** N
**Risk level:** Low / Medium / High
**Reviewed by:** Agent A (Bug/Security) + Agent B (Arch/Quality) + {project-specific}
### Critical (must fix)
- [file:line] description
### Warning (should fix)
- [file:line] description
### Suggestion (nice to have)
- [file:line] description
### Nit (optional)
- [file:line] description