Skip to main content
Dispatch the superpowers:code-reviewer subagent to review your work and catch issues early. Review early, review often.

When to Request Review

Mandatory Reviews

You must request review:
  • After each task in subagent-driven development
  • After completing a major feature
  • Before merging to main

Optional but Valuable

Consider requesting review:
  • When stuck (get a fresh perspective)
  • Before refactoring (establish a baseline)
  • After fixing a complex bug

How to Request Review

1

Get git SHAs

Identify the commit range to review:
2

Dispatch code-reviewer subagent

Use the Task tool with superpowers:code-reviewer type, filling the template from code-reviewer.md.Required placeholders:
  • {WHAT_WAS_IMPLEMENTED} - What you just built
  • {PLAN_OR_REQUIREMENTS} - What it should do
  • {BASE_SHA} - Starting commit
  • {HEAD_SHA} - Ending commit
  • {DESCRIPTION} - Brief summary
3

Act on feedback

Prioritize issues by severity:
  • Critical: Fix immediately
  • Important: Fix before proceeding
  • Minor: Note for later
  • Questionable: Push back with reasoning if reviewer is wrong

Code Review Template

The skill uses a template at requesting-code-review/code-reviewer.md that structures the review:

Example Review Request

Review Output Format

The code reviewer provides structured feedback:
What’s well done, with specific file:line referencesExample:
Critical (Must Fix):
  • Bugs, security issues, data loss risks, broken functionality
Important (Should Fix):
  • Architecture problems, missing features, poor error handling, test gaps
Minor (Nice to Have):
  • Code style, optimization opportunities, documentation improvements
Each issue includes:
  • File:line reference
  • What’s wrong
  • Why it matters
  • How to fix (if not obvious)
Clear verdict: Ready to merge? Yes/No/With fixesTechnical reasoning in 1-2 sentences

Integration with Workflows

Subagent-Driven Development

Review after each task to catch issues before they compound. Fix before moving to next task.

Executing Plans

Review after each batch (3 tasks). Get feedback, apply fixes, continue.

Ad-Hoc Development

Review before merge or when stuck on a problem.

Red Flags

Never:
  • Skip review because “it’s simple”
  • Ignore Critical issues
  • Proceed with unfixed Important issues
  • Argue with valid technical feedback
If reviewer is wrong:
  • Push back with technical reasoning
  • Show code/tests that prove it works
  • Request clarification on unclear feedback