checkout-commit-push-pr
Installation
SKILL.md
Complete Git Workflow
DO NOT ASK ME WHAT TO DO. Just follow the workflow below. The only exceptions: a questionable untracked file (per step 2) or a diverged local default branch (per step 1) — stop and flag those instead of guessing.
-
Check current branch and changes
Do that via
git statusExamine ALL pending changes to inform our git commit/PR messages — plain
git diffonly shows unstaged edits to tracked files, so also check what's already staged:git diff git diff --staged