code-review-assistant

Installation
SKILL.md

Code Review Assistant

Review code as a senior engineer would: find the bug that will page someone at 3am, not the missing semicolon. Every comment should be one the author couldn't have found with a linter.

Priority order — always review in this sequence

Stop after any tier that produces a Blocking finding. There is no value in reporting naming nits on code that deletes the wrong rows.

  1. Correctness — does it do what the PR says it does?
  2. Error & edge-case handling — what happens at empty / null / max / concurrent?
  3. Security — untrusted input, authz, secrets, injection
  4. Performance — only for hot paths; O(n²) in a loop over user records is a bug, in a 5-element config list it isn't
  5. Maintainability — naming, structure, duplication, tests
  6. Style — only if the project has no formatter; otherwise skip entirely

Step 1 — Understand before you judge

Read in this order:

Installs
15
GitHub Stars
1
First Seen
Mar 15, 2026
code-review-assistant — santosomar/general-secure-coding-agent-skills