Create a git commit for the currently staged files.
- •Load the git skill for commit message standards
- •Check staged changes with
git diff --cached --statandgit diff --cached - •Review recent commits with
git log --oneline -5for style consistency - •Draft the commit message following the git skill guidelines:
- •Subject: 50 chars max, imperative mood, capitalized, no period
- •Body: Explain why (not how), wrapped at 72 chars
- •Include the Claude Code footer
- •Immediately execute
git commitwith the drafted message
Do NOT ask for text approval - Claude Code's permission prompt handles that. If no files are staged, inform the user and do not create an empty commit.