commit-dis
Installation
SKILL.md
commit-dis — commit this session's work, here, now
Stage and commit the changes produced during this conversation onto the current branch. Nothing more. This is the quick "save what we just did" button.
THE RULES
- Stay on the current branch. Do NOT create, switch, or rename a branch.
Commit wherever
HEADalready points — even if that'smain. Never rungit checkout -b,git switch -c, orgit branch. - Only commit what this session changed. Stage the specific files you
created or edited in this thread by path. Do NOT
git add -A/git add .blindly — that risks sweeping in unrelated working-tree changes, untracked scratch files, or another task's edits. No overcommitting. - No push, no PR. Stop after the commit unless the user explicitly asks to push or open a PR.
- One commit for the session's work unless the user asks otherwise.