用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/znlgis/my-deepseek-config --skill conventional-commits命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Token-frugal, multi-dimension code review. Reports findings by severity; never rewrites code unless explicitly asked.
Audit code changes for security vulnerabilities before merging. Reports findings; never auto-fixes silently.
Enforce evidence-before-assertions discipline. Use when about to claim work is complete, before committing, or before creating PRs.
基于 SOC 职业分类
正在显示 SKILL.md
| name | conventional-commits |
| description | Write commit messages and PR titles following the Conventional Commits standard. |
Produce commit messages and PR titles in the Conventional Commits format. Spec: https://www.conventionalcommits.org
<type>(<optional scope>): <imperative subject>
<optional body — what changed and why, wrapped at ~72 cols>
<optional footer(s) — BREAKING CHANGE:, Closes #123, Co-authored-by:>
| Type | Use for | SemVer |
|---|---|---|
feat | new user-facing feature | minor |
fix | bug fix | patch |
docs | documentation only | -- |
style | formatting/whitespace, no behavior change | -- |
refactor | code change, neither fix nor feat | -- |
perf | performance improvement | patch |
test | adding or fixing tests | -- |
build | build system or dependencies | -- |
ci | CI configuration and scripts | -- |
chore | maintenance not touching src or tests | -- |
revert | reverts a previous commit | -- |
feat(parser): ....! after type/scope and/or BREAKING CHANGE: footer.Closes #42), not the subject.feat(auth): add OAuth2 device-code login flow
fix(api): guard against null user before serializing
docs: clarify skill auto-discovery paths in README
refactor(orchestrator)!: drop legacy routing table
BREAKING CHANGE: the old route is removed; callers must migrate.
For a tiny one-file tweak, a single-line type: subject is enough. Only add body when the why isn't obvious from the diff. Match the repository's existing commit style if it follows a different but consistent convention.
Before proposing a format: git log --oneline -20 to see actual commit style in use. If the repo uses a different convention, follow the existing style.