review-changes
Installation
SKILL.md
Code Review
Review and report. Skip the brainstorming; the user wants findings, not a conversation.
1. Detect the review target
| Input | Mode | How to gather |
|---|---|---|
| no args | code | git diff --cached --stat → git diff --stat → git diff HEAD~1 --stat — first non-empty wins |
path to .md file |
doc | read that file |
| other file/dir path | code | read files in scope |
commit range (abc..def) |
code | git diff abc..def + git log --oneline abc..def |
| PR number or URL | code | gh pr diff <n> + gh pr view <n> |
--branch <name> |
code | git merge-base <name> HEAD → git diff <base>..HEAD |