agentsclimarketplace

1natsu conventional commits

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

npx skills add 1natsu-vacation/agent-skills

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 author says it does

Copied from the file, not written here

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

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, 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

Keep looking

Skills are one crate of 328,083. 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.