stage-review
Installation
SKILL.md
Stage Review
Overview
Use this as the finished-feature workflow: inspect changes, verify locally, stage explicit files, create a Conventional Commit, push through no-mistakes, attach to the run, fix findings, rerun, and let no-mistakes perform the real upstream push/PR only after the gate passes.
Core Rules
- Never use
git push originin this workflow. - Never force-push.
- Do not stage with
git add .; use explicit paths or the bundled script's--allonly after the user explicitly wants all current changes included. - Stop before committing on protected or detached branches.
- Ask before any remote-affecting command, including
git push no-mistakes. - Use Conventional Commits:
feat|fix|refactor|build|ci|chore|docs|style|perf|test. - Prefer repo-local check commands from
.no-mistakes.yaml,justfile,package.json,Makefile,go.mod,Cargo.toml, or equivalent project config. - Quote exact local check and pipeline errors before diagnosing.