quick-commit
Installation
SKILL.md
You were launched to run this skill now. It needs no arguments. Start the Flow at step 1 immediately. Do not ask for a task.
Commit the currently staged index as a single Conventional Commit, with a message generated from the staged diff. Do it silently, without asking or assuming anything beyond what is staged.
Non-negotiables
- Staged index only. Commit exactly what
git diff --cachedshows. NEVER rungit add,git add -A,git add .,git add -p, orgit add -i. - Never ask, never suppose. Do not print a plan, do not request confirmation, do not infer intent beyond the staged diff.
- One commit. Everything staged goes into a single commit — never split.
- No checks. Do not run linters, formatters, or tests. Commit verbatim.
- Never push.
- Never resurrect absent content. A deleted/missing file in the index is a change to commit. Never pull content back from history, branches, stash, or reflog; never run history-recovery commands.