w-commit
Installation
SKILL.md
Invocation requests a commit. Inspect staged and unstaged changes and the authorized task scope before staging anything. Follow git publish.
- If creating a new branch,
git fetch originthengit switch -c <name> --no-track origin/mainfirst — never skip fetch, never a stale localmain. Inspect the diff and distinguish task-owned changes from unrelated work, including pre-staged files. If the intended commit cannot be separated safely, clarify the file scope. - Before staging: if behavior, commands, or conventions changed, matching MDX and nearest README must be in the diff; otherwise one line why not. Rely on commit hooks. Never the full pre-push suite.
- Stage explicit task-owned paths or hunks. Do not sweep unrelated or untracked work into the commit with a blanket add. Never
git add -A. Never stage.env, credentials, or secrets. - Write a Conventional Commit: lowercase type/scope, imperative summary of at most 60 characters, no period. Follow repository-specific scope conventions. Pass the message via a heredoc; commit with hooks enabled.
- Inspect the result and remaining working tree. Return commit ID and scope. A commit request alone does not authorize pushing.