Stats
Actions
Tags
How this skill is triggered — by the user, by Claude, or both
Slash command
/skills:commit-allThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create logically grouped git commits following project conventions.
Create logically grouped git commits following project conventions.
(<type>): <description>
| Type | Use For |
|---|---|
feat | New features |
fix | Bug fixes |
refactor | Code restructuring |
docs | Documentation |
test | Tests |
chore | Maintenance |
perf | Performance |
style | Formatting |
git status to see changes (never use -uall)git diff --staged and git diff to understand changesgit log --oneline -5 to see recent commit stylegit addgit commit -m "$(cat <<'EOF'
(type): description
EOF
)"
git status to verify.env or credential files--amend unless explicitly requested--no-verifygit add server/http/src/main/kotlin/
git commit -m "$(cat <<'EOF'
(feat): Add user preferences endpoint
EOF
)"
npx claudepluginhub abnegate/claudes --plugin skillsCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.