code-reviewing
Installation
SKILL.md
Code Review
Review code changes for production readiness.
Prioritize concrete findings over summary. Focus first on bugs, regressions, unsafe assumptions, and missing tests.
Your task:
- Check correctness, code quality, architecture, and testing
- Categorize issues by severity
- Assess production readiness
Review Checklist
Code Quality:
- Clean separation of concerns?
- Proper error handling?
- Type safety (if applicable)?
- DRY principle followed?
- Edge cases handled?