code-review
SKILL.md
Code Review
Checklists, patterns, feedback techniques, and automation for effective code reviews.
Review Checklist by Category
Logic and Correctness
- Does the code do what the PR description says it does?
- Are edge cases handled (empty inputs, boundary values, concurrent access)?
- Are error conditions handled gracefully with appropriate error types?
- Are there off-by-one errors in loops, slices, or pagination?
- Are null/undefined/nil cases handled?
- Does the control flow match the intended behavior (early returns, fallthrough)?