code-review

Installation
SKILL.md

Code Review Skill

Good reviews catch bugs. Great reviews teach the author something.

Review Priority (What Matters Most)

  1. Correctness — Does it do what it's supposed to?
  2. Security — Can it be exploited?
  3. Maintainability — Will the next person understand this?
  4. Performance — Will it scale?
  5. Style — Is it consistent? (ideally enforced by linters, not humans)

3-Pass Review

Pass Focus What You're Looking For Time
1. Orientation Big picture Does the approach make sense? Is the scope right? Over-engineered? 2-3 min
2. Logic Deep read Edge cases, null handling, error paths, concurrency, off-by-one 10-15 min
3. Polish Surface Naming, duplication, test coverage, docs 3-5 min
Related skills
Installs
1
First Seen
Mar 10, 2026