From agent-starter
Creates a single well-crafted git commit by analyzing the diff, matching the repo's commit style, and writing a concise "why not what" message. Invoked via /commit.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-starter:commitThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Gather this context before committing:
Gather this context before committing:
git statusgit diff HEADgit branch --show-currentgit log --oneline -10Based on the changes, create a single git commit:
Analyze all staged changes and draft a commit message:
Stage relevant files and create the commit using HEREDOC syntax:
git commit -m "$(cat <<'EOF'
Commit message here.
EOF
)"
Stage and create the commit in a single message. Do not do anything else.
npx claudepluginhub sneg55/agent-starter --plugin agent-starterCreates git commits with clear messages from working tree changes, following repo conventions or conventional commits. Handles clean trees and detached HEAD.
Creates git commits following repository style. Stages files explicitly and writes concise messages matching existing patterns.
Executes git commits with conventional commit message analysis, intelligent staging, and message generation. Use when asked to commit changes or when /commit is invoked.