Agent skill
git:commit
Create properly formatted commits following repository conventions
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/git-commit-kagenti-kagenti
SKILL.md
Git Commit
Create commits following the repository's conventions. Links to repo-specific guidelines for format details.
When to Use
- Every time you commit code
- After TDD fix iterations
- Before creating a PR
Quick Commit
git add <files>
git commit -s -m "🌱 Short descriptive message"
The -s flag adds the required Signed-off-by line.
Sign All Commits in Branch
If you have unsigned commits in your branch, sign them all:
git rebase --signoff HEAD~$(git rev-list --count upstream/main..HEAD)
Commit Format
See repo:commit for the full repository-specific format. Quick reference:
| Emoji | Type |
|---|---|
| ✨ | Feature |
| 🐛 | Bug fix |
| 📖 | Docs |
| 🌱 | Other (tests, CI, refactoring) |
| ⚠️ | Breaking change |
Amending
git commit --amend -s --no-edit
After Committing
Check the commit:
git log --oneline -1
Verify sign-off:
git log -1 --format='%B' | grep 'Signed-off-by'
Related Skills
repo:commit- Full commit format spec for this reporepo:pr- PR creation conventionsgit:rebase- Rebase before pushingtdd:ci- TDD workflow commit step
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?