| name | code-review |
| description | Structured code review with severity-based findings |
| arguments | [{"name":"target","description":"File path or glob pattern to review","required":true},{"name":"focus","description":"Review focus area (security|performance|readability|all)","default":"all"}] |
Code Review Skill
Process
- Read the target file(s): {{target}}
- Check against project standards defined in root CLAUDE.md
- Analyze for: type safety, error handling, Hono API patterns, Drizzle ORM usage, security
- Focus area: {{focus}}
Output Format
For each finding, output:
[SEVERITY] Title
- File:
path/to/file.ts:lineNumber
- Category: security | performance | readability | maintainability | correctness
- Finding: Description of the issue
- Suggestion: Concrete fix with code example
- Reference: Link to relevant docs or ADR if applicable
Severity levels: CRITICAL | HIGH | MEDIUM | LOW | GOOD (positive callout)
Checklist