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.
Creates, 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 sneg55/agent-starter