code-review
Installation
SKILL.md
Code Review Skill
Use this skill after implementing changes to validate your work before delivering.
Review Checklist
1. Correctness
- Changes solve the original issue/task
- No unintended side effects on existing functionality
- Edge cases are handled
- Error handling is appropriate (not excessive)
2. Code Quality
- Code matches existing style and patterns
- No unnecessary complexity or abstraction
- Variable and function names are clear
- No dead code, commented-out code, or TODOs left behind