Documentation
README
check-and-commit — verification gate, then commit
Run the gates in order, fix what's mechanically fixable, and commit only when everything is green. This skill is the only place in the workflow that commits.
Announce at start: "Using the check-and-commit skill — running the gates, then committing."
Step 1: Identify what changed
git status --porcelain
git diff --name-only HEAD # staged + unstaged vs HEAD — the full change set
This is the opening of the README. Read the full README on GitHub.