agentsclimarketplace

1natsu conventional commits

Skill 1natsu-vacation/agent-skills/skills/1natsu-conventional-commits

Conventional Commitsのフォーマット、タイプ、スコープ、破壊的変更、本文・フッターの書き方が必要なときに自動的に参照される内部リファレンス。コミットメッセージやPRタイトルの作成時に他のスキルから利用される。From its SKILL.md

Install
npx -y skills add 1natsu-vacation/agent-skills --skill 1natsu-conventional-commits

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

3.9 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it

Conventional Commits リファレンス

Conventional Commits の包括的なリファレンス。

いつ使うか

  • コミットメッセージを書くとき
  • PRタイトルを作成するとき
  • 変更履歴の分類が必要なとき

フォーマット

<type>(<scope>): <description>

[任意の本文]

[任意のフッター]

タイプリファレンス

タイプ用途
feat新機能feat(auth): add OAuth2 login
fixバグ修正fix(api): resolve timeout error
docsドキュメントdocs(api): add endpoint examples
styleフォーマット変更、ロジック変更なしstyle(components): fix indentation
refactorコード再構成、動作変更なしrefactor(utils): simplify validation
perfパフォーマンス改善perf(queries): optimize database calls
testテストの追加・更新test(auth): add login flow tests
buildビルドシステムや依存関係build(webpack): update config
ciCI/CD設定ci(actions): add test workflow
choreメンテナンスタスクchore(deps): update dependencies
revert以前のコミットの取り消しrevert: feat(auth): add OAuth2

description のルール

  • 絵文字なし
  • 命令形を使う:"add"("added" や "adds" ではなく)
  • 先頭を大文字にしない
  • 末尾にピリオドをつけない
  • 可能なら50文字以内に収める

スコープのガイドライン

スコープは任意。影響範囲を示す:

モジュール別: feat(auth):, fix(payment):, docs(api):

コンポーネント別: feat(button):, fix(modal):, style(navbar):

レイヤー別: feat(frontend):, fix(backend):, refactor(database):

スコープなし(グローバルな変更):chore: update all dependencies

破壊的変更

タイプ/スコープの後に ! を付けて示す:

feat(api)!: change endpoint response format

BREAKING CHANGE: API responses now use camelCase instead of snake_case

本文のガイドライン

descriptionだけでは不十分な場合、本文でコンテキストを補足する:

fix(parser): handle nested quotes in CSV fields

パーサーがクォート文字列内のカンマを含むすべてのカンマで分割していた。
クォートの深さを追跡するステートを追加し、フィールド境界を
正しく識別できるようにした。
  • descriptionとは空行で区切る
  • 何を なぜ 変更したかを説明する(どうやっては不要)
  • 1行72文字で折り返す

フッター

破壊的変更やissue参照に使う:

feat(api): change authentication endpoint

BREAKING CHANGE: /auth/login now requires email instead of username

Refs: #123

カテゴリ別の例

機能追加

feat(search): add fuzzy search capability
feat(export): support CSV export
feat(i18n): add Japanese localization

バグ修正

fix(validation): prevent empty email submission
fix(cache): resolve race condition in cache updates
fix(auth): handle expired token gracefully

パフォーマンス

perf(images): implement lazy loading
perf(queries): add database indexes
perf(bundle): reduce JavaScript bundle size

リファクタリング

refactor(auth): extract validation logic
refactor(components): convert to TypeScript
refactor(api): consolidate duplicate code

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 2 of the 12 instructions most pr commit review skills give in ~1.2k tokens

Counted across 1,055 of the 1,911 authors here whose files we hold, read 2026-09-06

  • Use conventional commit message formatin 150 of 1055, across 145 files
  • Announce skill usage at startin 78 of 1055
  • Use imperative mood for commit descriptionshere, and in 54 of 1055, across 51 files
  • Add directory to gitignore if not ignoredin 52 of 1055, across 41 files
  • Use imperative mood for commit subjectin 52 of 1055
  • Run tests to verify clean baselinein 42 of 1055, across 32 files
  • Push branch to originin 40 of 1055, across 38 files
  • Verify worktree directory is ignored before creationin 39 of 1055, across 32 files
  • Delete branches after mergingin 38 of 1055, across 30 files
  • Create worktree with new branchin 37 of 1055, across 32 files
  • Wrap body text at 72 charactershere, and in 36 of 1055, across 34 files
  • Auto-detect and run project setupin 35 of 1055, across 27 files

Said here and by no other author read

  • separate description and body with empty line

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.