← Back to list

semantic-commits
by simple-platform
Simple Platform Tools
⭐ 1🍴 1📅 Jan 25, 2026
SKILL.md
name: semantic-commits description: Guide to writing standard, parseable commit messages (Conventional Commits).
Semantic Commits Skill
1. The Philosophy
We use Conventional Commits to generate changelogs and determine SemVer bumps automatically. A commit message has three parts:
type(scope): description
2. Commit Types
Choose the correct type based on your change:
| Type | Meaning | SemVer Impact |
|---|---|---|
feat | A new feature | MINOR |
fix | A bug fix | PATCH |
docs | Documentation only | PATCH |
style | Formatting (white-space, etc) | PATCH |
refactor | Code change that neither fixes a bug nor adds a feature | PATCH |
perf | Code change that improves performance | PATCH |
test | Adding missing tests or correcting existing tests | PATCH |
chore | Build process, aux tools, dependency updates | PATCH |
3. Formatting Rules
- Scope (Optional): The component being changed (e.g.,
auth,orders,cli). - Description: concise, imperative mood ("add" not "added").
- Body (Optional): Context, motivation, and references (breaking changes go here).
4. Examples
Feature:
feat(billing): add stripe webhook handler
Bug Fix:
fix(validation): allow international phone numbers
Breaking Change:
feat(api): remove legacy search endpoint
BREAKING CHANGE: The /api/search endpoint has been removed. Use /api/v2/search instead.
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon