commit-message
SolidConventional Commits: reads the staged diff and proposes `type(scope): summary`, with body/footer when needed. One logical change = one commit. commit-agent-csk applies it.
Code & Development 22 stars
4 forks Updated yesterday MIT
Install
Quality Score: 81/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Commit Message (Conventional Commits v1.0.0)
<!-- routing-eval reads this line; it lives in the BODY so the always-on skill LISTING stays inside
Claude Code's budget (1% of the context window) — an overflowing listing gets descriptions
truncated or dropped, which strips the very keywords a match depends on. -->
Trigger phrases: "commit message", "make a commit", "conventional commit", "write a commit", "git commit"
Format: `type(scope): summary` + (optional blank line + body) + (optional footer).
## Type (required)
- `feat` — new feature · `fix` — bug fix
- `docs` — docs only · `refactor` — restructure with no behavior change
- `perf` — performance · `test` — add/fix tests
- `build` — build/dependency · `ci` — CI configuration
- `chore` — maintenance/automated · `revert` — revert a previous commit
- `style` — formatting (no logic)
### Which type? (deciding when ambiguous)
- A new capability for the user? → `feat`. Fixing an existing wrong behavior? → `fix`.
- Behavior the same, only the structure changed? → `refactor` (if behavior changed it's `feat`/`fix`, not refactor).
- Touched only tests/docs/formatting? → `test`/`docs`/`style` (don't touch code logic).
## Scope (optional, preferred)
The affected area/module: `auth`, `api`, `backend`, `db`, `frontend`, `session`, `agent`, etc.
One word, consistent with the project's module name.
## Summary line
- **In the project's established language** (English by default f...
Details
- Author
- byerlikaya
- Repository
- byerlikaya/claude-starter-kit
- Created
- 1 months ago
- Last Updated
- yesterday
- Language
- Shell
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Listed
commit-messages
Generate clear, conventional commit messages from git diffs. Use when writing commit messages, reviewing staged changes, or preparing releases.
0 Updated today
israel7852 Code & Development Listed
commit
Create a conventional commit with context-aware message
3 Updated today
alergyonthestage AI & Automation Listed
commit-msg
Use when you have staged changes and need a clear, conventional-commits style message that explains the why, not just the what.
1 Updated 4 weeks ago
NSBen