universal/collaboration/requesting-code-review/SKILL.md
Dispatch code-reviewer subagent to review implementation against plan or requirements before proceeding
npx skillsauth add bobmatnyc/claude-mpm-skills Requesting Code ReviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Dispatch code-reviewer subagent to catch issues before they cascade.
Core principle: Review early, review often.
Mandatory:
Optional but valuable:
1. Get git SHAs:
BASE_SHA=$(git rev-parse HEAD~1) # or origin/main
HEAD_SHA=$(git rev-parse HEAD)
2. Dispatch code-reviewer subagent:
Use Task tool with code-reviewer type, fill template at Code Reviewer Template
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 summary3. Act on feedback:
| Severity | Action | |----------|--------| | Critical | Fix immediately, don't proceed | | Important | Fix before next major task | | Minor | Note for later, can proceed |
See severity guidelines for details.
Subagent-Driven Development:
Executing Plans:
Ad-Hoc Development:
If reviewer wrong:
See pushing back examples
Never:
Always:
Need examples? See Review Examples & Workflows for:
Need template? See Code Reviewer Template for the complete subagent dispatch template.
development
Optimize web performance using Core Web Vitals, modern patterns (View Transitions, Speculation Rules), and framework-specific techniques
development
Best practices for documenting APIs and code interfaces, eliminating redundant documentation guidance per agent.
development
Comprehensive API design patterns covering REST, GraphQL, gRPC, versioning, authentication, and modern API best practices
development
Visual verification workflow for UI changes to accelerate code review and catch ...