code-review

Installation
SKILL.md

Code Review Skill

When reviewing code, follow this structured process:

1. Understand the Context

  • What does this code do? Summarize its purpose in 1-2 sentences
  • What files were changed and why?
  • If reviewing a diff, understand both the before and after

2. Correctness

  • Are there any logic bugs?
  • Are edge cases handled (null, empty, zero, negative, boundary values)?
  • Are error paths handled properly with meaningful error messages?
  • Are return types and values correct?
  • Are async operations handled properly (missing await, race conditions)?

3. Security

  • SQL injection or NoSQL injection risks
  • XSS vulnerabilities (unsanitized user input rendered in HTML)
Related skills

More from aakash-dhar/claude-skills

Installs
4
First Seen
Mar 9, 2026