| name | code-review |
| description | On-demand code review checklist. Use when: reviewing code changes, PR review, self-review before committing, checking code quality after implementation. Covers readability, correctness, performance, security, and maintainability. |
Code Review Skill
When to Use
- After implementing a feature (self-review)
- Before committing code
- When asked to review a PR or diff
- When the Manager's handoff includes a code review gate
Review Process
1. Understand the Change
- What problem does this code solve?
- Read the relevant
.agents/state.json task for context
- Identify all modified files
2. Correctness
3. Readability
4. Performance
5. Security (Quick Check)
6. Maintainability
7. Report Format
## Code Review: [Feature/Change]
### Summary
[One sentence: what was reviewed]
### Findings
| # | Severity | File:Line | Issue | Suggestion |
|---|----------|-----------|-------|------------|
| 1 | High | file.ts:42 | [issue] | [fix] |
| 2 | Medium | file.ts:88 | [issue] | [fix] |
### Verdict
APPROVE / REQUEST CHANGES / NEEDS DISCUSSION