code-review
Installation
SKILL.md
Code Review
Quick Start
When reviewing code, follow this structured process:
- Initial Scan: Identify change types and scope
- Detailed Review: Check all categories systematically
- Scoring & Report: Calculate scores and generate feedback
Review Checklist
SOLID Principles (25% weight)
- SRP: Each class/method has single responsibility
- OCP: New features extend, don't modify existing code
- LSP: Subclasses fully substitute parent classes
- ISP: Interfaces are focused and minimal
- DIP: Depend on abstractions, not concretions