A code review tool that organizes local code changes into logical chapters and points out what to review before you dive into the code.
If you like this, try out the full Stage experience on our website below!
Website • Examples • Blog • Twitter • Discord • About Us
npm install -g stagereviewThen add the skill to your agent:
npx skills add ReviewStage/stage-clinpx skills remove ReviewStage/stage-cli
npm uninstall -g stagereviewIn your AI agent, run:
/stage-chapters
This organizes your local changes into reviewable chapters and opens a browser UI. Everything happens on your machine.
| Flag | Description |
|---|---|
--base <ref> |
Base ref to diff against (default: auto-detect main/master) |
--compare <ref> |
Compare ref to diff against --base |
--ref <mode> |
Diff scope: work (staged + unstaged + untracked), staged, or unstaged (default: auto-detect) |
Examples:
# Review only staged changes
/stage-chapters --ref staged
# Diff against a specific branch
/stage-chapters --base feature-a
# Compare two branches
/stage-chapters main feature
/stage-chapters main..feature
/stage-chapters --base main --compare feature