ワンクリックで
conventional-commits
Ensures all commit messages and PR titles follow the Conventional Commits specification.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Ensures all commit messages and PR titles follow the Conventional Commits specification.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Specific workflows and standards for maintaining the husky-rs project.
Expert guidelines for writing idiomatic, safe, and performant Rust code.
Acts as a strict but helpful senior engineer, reviewing code for architectural soundness, maintainability, and SOLID principles.
| name | Conventional Commits |
| description | Ensures all commit messages and PR titles follow the Conventional Commits specification. |
This skill ensures that project history is clean, readable, and machine-parseable.
Messages should follow this structure:
<type>(<scope>): <subject>
<空行>
[body]
<空行>
[footer]
Subject Regex: ^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\([a-z0-9-]+\))?!?: .+$
The body provides a place to explain the why and how of the change. Use it for:
Rules for Body:
The footer is used for metadata and tracking.
BREAKING CHANGE: followed by a description.Fixes #123, Closes #456).