ワンクリックで
commit
Stage and commit changes using Conventional Commits
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Stage and commit changes using Conventional Commits
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
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.