review-current-branch
Installation
SKILL.md
Review Current Branch
Reviews the current branch's diff vs main by spawning parallel agents. Primary focus is crates/ and packages/ changes. If examples/ or docs/ changes are detected, dedicated agents are spawned for those areas.
Workflow
Step 1: Get the diff
Run git diff main...HEAD to get the full branch diff. If the diff is empty, tell the user there's nothing to review and stop.
Also collect the list of changed files with git diff main...HEAD --name-only.
Classify changed files into buckets:
- core: files under
crates/orpackages/ - examples: files under
examples/ - docs: files under
docs/ - other: everything else (benchmarks, CI, configs)