用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Sidiora-Labs/centra-llm-agents --skill summary命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | summary |
| description | Quick summary of Conventional Commits specification and core concepts for semantic commit messages. |
Conventional Commits is a lightweight convention on top of commit messages that provides an easy set of rules for creating an explicit commit history. It makes it easier to write automated tools on top of commits and aligns with Semantic Versioning.
Every conventional commit follows this format:
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
Type (REQUIRED)
feat, fix, docs, style, refactor, perf, test, chore, ci, buildScope (OPTIONAL)
feat(parser):Description (REQUIRED)
Body (OPTIONAL)
Footer (OPTIONAL)
<token>: <value>BREAKING CHANGE: for major version changesfeat - New Feature
MINOR version bump in SemVerfeat(auth): add OAuth 2.0 supportfix - Bug Fix
PATCH version bump in SemVerfix(parser): handle edge case with empty arraysBREAKING CHANGE - Breaking Change
MAJOR version bump in SemVer! before colon or in footerfeat!: drop support for Node 6✅ Automated Tooling: Tools can automatically parse and act on commits ✅ Clear History: Commit history is human-readable and searchable ✅ Semantic Versioning: Automatic version bumping based on commit types ✅ Changelog Generation: Auto-generate changelogs from commits ✅ Team Communication: Clear understanding of what changed and why ✅ Project Organization: Encourages atomic, well-organized commits
feat: allow provided config object to extend other configs
fix(parser): prevent racing of requests
feat(api)!: send an email to the customer when a product is shipped
docs: correct spelling of CHANGELOG
refactor(core): simplify request processing logic
✅ Type First: Always specify the commit type ✅ Scope Optional: Add scope when helpful for clarity ✅ Description Imperative: Use "add", "fix", "refactor" not "added", "fixed", "refactored" ✅ Description Lowercase: Start description with lowercase (unless following scope with parenthesis) ✅ One Logical Change: Keep commits atomic and focused ✅ Breaking Changes Clear: Always mark breaking changes explicitly
| Commit Type | SemVer Impact | Example |
|---|---|---|
feat | MINOR bump | v1.0.0 → v1.1.0 |
fix | PATCH bump | v1.1.0 → v1.1.1 |
BREAKING CHANGE | MAJOR bump | v1.1.1 → v2.0.0 |
docs, style, refactor, perf, test, chore, ci | No SemVer impact | Development only |
License: Creative Commons - CC BY 3.0
Source: Conventional Commits v1.0.0