Hal-9000 commit
Use when making any git commit. All git add and commit operations must go through this skill, including from subagents and other skills. Always pass a brief description of what changed as the argument
git clone https://github.com/vinta/hal-9000
T=$(mktemp -d) && git clone --depth=1 https://github.com/vinta/hal-9000 "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/hal-skills/skills/commit" ~/.claude/skills/vinta-hal-9000-commit && rm -rf "$T"
plugins/hal-skills/skills/commit/SKILL.mdCommit all changes in the working tree. Run
git status and git diff, then stage and commit with conventional commit messages. One logical change per commit.
Critical Rule
You are a committer, not a coder. The user or another agent wrote this code deliberately — modifying it during the commit would silently alter reviewed work without the author's knowledge.
Your only job: stage the exact working tree state and write a commit message that captures why the change was made.
<example> You see a typo in a variable name while reviewing the diff. Correct behavior: 1. Stage and commit the file as-is 2. After committing, say: "I noticed `reuslt` appears to be a typo for `result` in utils.py:42"Incorrect behavior: editing the file to fix the typo before or during staging — even a "safe" fix silently changes reviewed work. </example>
Workflow
cd to the project root before git commands instead of using git -C, which obscures working directory state. Execute git commands directly without explanatory preamble. Commit immediately without confirmation prompts (interactive mode is not supported).
-
Analyze Changes: Use
andgit status
to understand all modifications in the working directory. Categorize changes by:git diff- STRUCTURAL: Code reorganization, renaming, refactoring without behavior changes
- BEHAVIORAL: New features, bug fixes, functionality changes
- DOCUMENTATION: README updates, comment changes, documentation files
- CONFIGURATION: Build files, dependencies, environment settings
-
Group Logically: Organize changes into logical units where each unit:
- Addresses a single purpose or problem
- Structure changes to be atomic and easily revertable for safe rollback
- Would make sense to revert as a unit
-
Stage Changes: Use appropriate staging strategy:
- Whole file:
git add <file> - Hunk-by-hunk:
, edit the patch to keep only specific hunks, thengit diff <file> > /tmp/${CLAUDE_SESSION_ID}-patch.diffgit apply --cached /tmp/${CLAUDE_SESSION_ID}-patch.diff - To unstage, use
(notgit restore --staged
, which discards work)git reset --hard - Fallback: If
fails (malformed patch), stage the whole file withgit apply --cached
insteadgit add <file>
- Whole file:
-
Handle Pre-commit Hooks: If hooks complain about unstaged changes:
- Stash unstaged changes first:
(select hunks to stash)git stash push -p -m "temp: unstaged changes" - Or stash all unstaged:
git stash push --keep-index -m "temp: unstaged changes" - Commit, then restore:
git stash pop - If hooks modify staged files (auto-formatting), re-add the modified files and retry the commit
- Stash unstaged changes first:
-
Create Atomic Commits: For each logical group:
- Conventional commit format. Subject: what changed (≤72 chars). If the subject is self-explanatory, skip the body.
- Commit the working tree state as-is — the user may have made manual edits outside this conversation
- Use
directly — never usegit commit -m "message"
or heredoc subshells in git commands, as they break$()
pattern matchingallowed-tools
Attribution
Include a
Co-Authored-By footer in every commit message:
If you're an Anthropic Claude model:
Co-Authored-By: Claude <noreply@anthropic.com>
If you're a Google Gemini model:
Co-Authored-By: Gemini <gemini-code-assistant@google.com>
Skip if you're not one of the above models.
Gotchas
- Never modify working tree files. If you spot bugs, typos, style issues, or improvements, report them after committing — never fix them. Your only job is staging and writing the commit message.
- Don't commit plan or spec docs unless the user explicitly asked you to. Files under
,plans/
, or similar directories are working documents — staging them silently pollutes the commit with artifacts the user may not want tracked.specs/
fails on malformed patches. Hunks extracted manually often have broken headers or trailing whitespace. Fallback: stage the whole file withgit apply --cached
instead of retrying the patch.git add- No
or heredoc subshells in$()
. Thegit commit -m
pattern matching treats the entire command as a string — subshells produce commands that don't match any allowed pattern and get blocked.allowed-tools - Pre-commit hooks that auto-format staged files cause loops. The hook modifies the file, which un-stages the formatted version. Fix: re-add the modified files and retry the commit once. Don't retry indefinitely.
- Never
to unstage. It destroys working tree changes. Usegit reset --hard
to unstage without losing anything.git restore --staged - Stash before commit if hooks complain about unstaged changes. Use
to isolate unstaged work, commit, thengit stash push --keep-index
. Forgetting the pop leaves work stranded in the stash.git stash pop - Unstaged changes are still changes.
showing "no changes added to commit" does NOT mean the working tree is clean. It means nothing is staged yet. Your job is to stage and commit those changes, not report "nothing to commit."git status