Code Review Skill
Performs a thorough multi-perspective code review.
When to Use
- •User says "review code", "code review"
- •Before merging significant changes
- •After major refactoring
- •For security-critical code
Review Process
- •
Style Review
- •Naming conventions
- •Code formatting
- •Idiomatic patterns
- •
Quality Review
- •Logic correctness
- •Edge cases
- •Error handling
- •Maintainability
- •
Security Review
- •Input validation
- •Injection risks
- •Auth/authz
- •Secrets handling
- •
Performance Review
- •Algorithmic complexity
- •Resource usage
- •Potential bottlenecks
Output
code
## Code Review Summary [Overall recommendation: Approve / Request Changes] ## Critical Issues [MUST fix] ## Warnings [Should fix] ## Suggestions [Nice to have] ## Positive Aspects [What's done well]
Execution
Run reviews in parallel where possible:
- •Style + Quality (quick)
- •Security (thorough)
- •Performance (if needed)
Consolidate findings into unified report.