# Code Review

> Review code for correctness, security, maintainability, and style. Use when reviewing pull requests, examining code changes, or performing code review.

- Skill: `iamjcabalejo/code-review` (Agent Skill)
- Install (CLI): `npx skillmds@latest add iamjcabalejo/code-review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/iamjcabalejo/code-review/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: iamjcabalejo (https://skillmd.com/u/iamjcabalejo)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/iamjcabalejo/code-review

---


# Code Review

## Checklist
- [ ] **Correctness**: Logic correct, edge cases handled
- [ ] **Security**: No obvious vulnerabilities (injection, auth bypass)
- [ ] **Maintainability**: Readable, no unnecessary complexity
- [ ] **Tests**: Adequate coverage for changes
- [ ] **Style**: Matches project conventions

## Severity Levels
- **Critical**: Must fix (bug, security issue)
- **Suggestion**: Should improve (readability, pattern)
- **Nice to have**: Optional enhancement

## Feedback Format
- Be specific: point to the code
- Explain why: "Consider X because Y"
- Suggest fix when possible
- Acknowledge good patterns

## What to Avoid
- Nitpicking style (use linter)
- Vague feedback ("this could be better")
- Blocking on non-blocking issues

