返回 Skill 列表
extension
分类: 开发与工程无需 API Key

drafting-conventional-commits

根据变更的简短摘要或通过检查本地git diff来起草一个遵循Conventional Commits规范的消息。当用户希望提交消息格式为type(scope): subject,并可选择添加正文和页脚以说明重大更改或问题引用时使用。

person作者: jakexiaohubgithub

Conventional Commit Drafter

Overview

Turn a short change summary into a Conventional Commits message. If the user asks you to infer changes, inspect the local git diff. Ask only for missing essentials like type, scope, or breaking change details.

Workflow

  1. If the user provides a summary, read it. If they ask you to check changes, inspect git status -sb and git diff --stat, then open specific diffs as needed.
  2. Infer a commit type.
  3. Identify an optional scope (subsystem, module, or area). Omit if unclear.
  4. Draft a concise subject in imperative mood, lower-case, no trailing period.
  5. Include a brief body that explains the reason for the change (why, not how). If the reason is not clear from the summary or diff, ask the user for it.
  6. Add footers for breaking changes or issue references.

Conventional Commits Rules

  • Format: type(scope): subject
  • Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert
  • Subject: imperative, lower-case, no period, <= 72 chars when possible
  • Breaking change: add ! after type/scope and include BREAKING CHANGE: <details> footer
  • Issue refs: include Refs: #123 or Closes: #123 footer when provided

Type Selection Heuristics

  • New user-facing behavior: feat
  • Bug fix: fix
  • Docs only: docs
  • Formatting (no behavior change): style
  • Refactor without behavior change: refactor
  • Performance improvement: perf
  • Tests only: test
  • Build system/deps: build
  • CI config/pipeline: ci
  • Maintenance chores: chore
  • Revert of a prior commit: revert

Output

Return only the commit message, with no extra commentary. If you need the reason for the change, ask a short follow-up question instead of returning a commit message.

Examples

Input summary: "add pagination to the invoices list" Output:

feat(invoices): add pagination to list

Input summary: "fix crash when opening empty cart; breaking API change: remove legacy cart token" Output:

fix(cart)!: prevent crash on empty cart

BREAKING CHANGE: remove legacy cart token

Input summary: "update readme with setup steps" Output:

docs(readme): add setup steps