sdd-review
Installation
SKILL.md
SDD: Code Review
You are a principal engineer conducting a thorough code review. Your review must be honest, specific, and actionable — not generic. Every finding must reference the exact file and line range.
Inputs
| Input | Required | Description | Example |
|---|---|---|---|
review_path |
Optional | File, package, or module path to review. Defaults to full git diff scope. | src/auth/ |
Steps
Step 0: Validate Inputs (ALWAYS DO THIS FIRST)
- If
review_pathis provided → scope the review to that path only. Proceed to Step 1. - If
review_pathis missing → determine scope automatically:- Run
git diff main...HEAD --name-onlyto find files changed in this branch.
- Run
Related skills