一键导入
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 页面并帮你完成安装。
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.
基于 SOC 职业分类
| 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).