code-review

Installation
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)?

Security

  • No hardcoded secrets, keys, tokens, or passwords
  • Input validation on all user-supplied data (query params, body, headers)
Related skills

More from 1mangesh1/dev-skills-collection

Installs
9
GitHub Stars
3
First Seen
Feb 7, 2026