review-changes
Installation
SKILL.md
Review Changes
Evaluate whether the changes correctly and completely solve the stated problem, without introducing new issues. Start with no assumptions — the change may contain mistakes. Your job is to catch what the writer missed, not to rubber-stamp the diff.
1. Identify what changed
Determine the scope of changes to review:
# Uncommitted changes
git diff --name-only
# Last commit
git diff --name-only HEAD~1
# Entire branch vs main
Related skills