git-commit▌
fvadicamo/dev-agent-skills · updated Apr 8, 2026
Creates git commits following Conventional Commits format.
Git commit
Creates git commits following Conventional Commits format.
Recent project commits
!git log --oneline -5 2>/dev/null
Quick start
# 1. Stage changes
git add <files>
# 2. Create commit
git commit -m "type(scope): subject"
Project conventions
- Scope is required (kebab-case):
validation,auth,cookie-service,api - Additional type beyond standard CC:
security(vulnerability fixes or hardening) - HEREDOC for multi-line commits:
git commit -m "$(cat <<'EOF'
feat(validation): add URLValidator with domain whitelist
Implement URLValidator class supporting:
- Domain whitelist enforcement
- Dangerous scheme blocking
Addresses Requirement 31
Part of Task 5.1
EOF
)"
Important rules
- ALWAYS check CLAUDE.md conventions first - use project format if it differs
- ALWAYS include scope in parentheses
- ALWAYS use present tense imperative verb for the subject
- NEVER end subject with a period
- NEVER exceed 50 chars in the subject line
- NEVER use generic messages ("update code", "fix bug", "changes")
- Group related changes into a single focused commit
References
references/commit_examples.md- Extended examples by type, good/bad comparisons
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.5★★★★★37 reviews- ★★★★★Shikha Mishra· Dec 28, 2024
I recommend git-commit for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Fatima Srinivasan· Dec 28, 2024
git-commit fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Aisha Tandon· Dec 28, 2024
git-commit is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Yash Thakker· Nov 19, 2024
git-commit fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Noor Huang· Nov 19, 2024
I recommend git-commit for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Aarav Johnson· Nov 19, 2024
Keeps context tight: git-commit is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Sakshi Patil· Nov 3, 2024
Useful defaults in git-commit — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Chaitanya Patil· Oct 22, 2024
Registry listing for git-commit matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Dhruvi Jain· Oct 10, 2024
git-commit has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Diego Khan· Oct 10, 2024
Solid pick for teams standardizing on skills: git-commit is focused, and the summary matches what you get after install.
showing 1-10 of 37