#What it does
The /pr-review skill performs a comprehensive pull request review by deploying multiple specialized agents in parallel.
#How to use
bash
/pr-review 123Where 123 is the PR number.
#Specialized agents
The skill runs these agents concurrently:
- Code Reviewer β Bugs, logic errors, security issues, style violations
- Silent Failure Hunter β Catch blocks that swallow errors, inadequate fallbacks
- Test Analyzer β Test coverage gaps, missing edge cases
- Type Design Analyzer β Type safety, proper encapsulation, invariant expression
- Comment Analyzer β Comment accuracy, potential comment rot
#Output
Each agent reports independently with confidence-filtered findings. Only high-priority issues are surfaced β no noise.
#When to use
- Before merging any PR
- After receiving review feedback to verify fixes
- When reviewing someone else's contribution