スキル一覧に戻る
simple-platform

semantic-commits

by simple-platform

Simple Platform Tools

1🍴 1📅 2026年1月25日
GitHubで見るManusで実行

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:

TypeMeaningSemVer Impact
featA new featureMINOR
fixA bug fixPATCH
docsDocumentation onlyPATCH
styleFormatting (white-space, etc)PATCH
refactorCode change that neither fixes a bug nor adds a featurePATCH
perfCode change that improves performancePATCH
testAdding missing tests or correcting existing testsPATCH
choreBuild process, aux tools, dependency updatesPATCH

3. Formatting Rules

  1. Scope (Optional): The component being changed (e.g., auth, orders, cli).
  2. Description: concise, imperative mood ("add" not "added").
  3. 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.

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です