원클릭으로
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).