commit
SkillDev toolsStage and commit changes using Conventional Commits
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the commit skill
What this skill tells your AI
The instructions your AI receives, as published by buddiesofbudgie/budgie-desktop in .claude/skills/commit/SKILL.md and read by ahel’s review.
Create a git commit for the current changes following the Conventional Commits specification.
Steps
-
Run these commands in parallel to understand the current state:
git statusto see all changed and untracked filesgit diffto see unstaged changesgit diff --cachedto see already-staged changesgit log --oneline -5to see recent commit style
-
Analyze the changes and determine:
- Which files should be staged (skip files that likely contain secrets like
.env, credentials, etc.) - The appropriate Conventional Commit type and scope
- A concise description of the change
- Which files should be staged (skip files that likely contain secrets like
-
Stage the relevant files by name (do NOT use
git add -Aorgit add .) -
Determine attribution — analyze the conversation context:
- Did Claude write or modify code (generate implementations, refactor logic, write new functions)? → Add
Assisted-by: Claude:<model-id>trailer - Did Claude only perform mechanical tasks (committing, formatting, running commands) or did the human make all code changes? → NO trailer
- Never use
Co-Authored-By
- Did Claude write or modify code (generate implementations, refactor logic, write new functions)? → Add
-
Craft 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.
Conventional Commit types and scopes
See CONTRIBUTING.md for the full list of types and scopes.
Rules
- The description should be lowercase, imperative mood, and not end with a period
- Keep the first line under 72 characters
- Scope is optional but encouraged — use the most relevant area
- The body should explain why, not what — the diff shows what changed
- If changes span multiple concerns, prefer a single commit with a clear summary over being overly granular
- Always pass the commit message via a HEREDOC:
git commit -s -m "$(cat <<'EOF'
type(scope): description
Optional body.
Assisted-by: Claude:<model-id>
EOF
)"
- After committing, run
git statusto verify success.
Arguments
If $ARGUMENTS is provided, use it as guidance for the commit message or scope.
Signals
- GitHub stars
- 1k
- Forks
- 66
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
commit-buddiesofbudgie- Source
- github.com/buddiesofbudgie/budgie-desktop