with one click
commit
Stage and commit changes using Conventional Commits
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Stage and commit changes using Conventional Commits
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | commit |
| description | Stage and commit changes using Conventional Commits |
| disable-model-invocation | false |
| allowed-tools | Bash(git *) |
Create a git commit for the current changes following the Conventional Commits specification.
Run these commands in parallel to understand the current state:
git status to see all changed and untracked filesgit diff to see unstaged changesgit diff --cached to see already-staged changesgit log --oneline -5 to see recent commit styleAnalyze the changes and determine:
.env, credentials, etc.)Stage the relevant files by name (do NOT use git add -A or git add .)
Determine attribution - analyze the conversation context:
Assisted-by: Claude:<model-id> trailerCo-Authored-ByCraft the commit message using the types, scopes, and rules defined in CONTRIBUTING.md. Additional skill-specific rules:
git commit -s -m "$(cat <<'EOF'
type(scope): description
Optional body.
Assisted-by: Claude:<model-id>
EOF
)"
git status to verify success.If $ARGUMENTS is provided, use it as guidance for the commit message or scope.