How this skill is triggered — by the user, by Claude, or both
Slash command
/coding:git-commitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a git commit following your standard git commit workflow. The user has completed work and is ready to commit their changes.
Create a git commit following your standard git commit workflow. The user has completed work and is ready to commit their changes.
$ARGUMENTS
git statusgit diff HEADgit branch --show-currentgit log --oneline -10Based on the above changes and user context, create atomic commits following these guidelines:
git add (exclude temp files)git commit -m "$(cat <<'EOF'
Your commit message here
EOF
)"
git status after to verify successgit log -1 --format='%an %ae' and verify not pushed), amend the commitCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub codethread/agents --plugin coding