en un clic
commit
Stage and commit changes using Conventional Commits
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Stage and commit changes using Conventional Commits
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
| 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 following this format:
<type>(<scope>): <description>
[optional body]
[Assisted-by: Claude:<model-id> — only if Claude assisted with code changes]
Signed-off-by: <name> <email>
Important: All commits require a DCO sign-off. Always use git commit -s to automatically add the Signed-off-by trailer.
See CONTRIBUTING.md for the full list of types and scopes.
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.