بنقرة واحدة
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 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.