Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计异常

commit-message-generator提交消息生成器

Agent Skill

commit-message-generator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

303

周安装

13

GitHub Stars

8

下载量

106
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:commit-message-generator(提交消息生成器)
来源仓库:https://github.com/kanopi/cms-cultivator
仓库路径:skills/commit-message-generator
安装命令:
npx skills add https://github.com/kanopi/cms-cultivator --skill commit-message-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/kanopi/cms-cultivator --skill commit-message-generator

简介

commit-message-generator 自动为暂存更改生成约定式提交消息,强调故事性和清晰度。

  • 适用于希望提交成为代码演化文档、支持自动化 changelog 生成的团队。
  • 相信清晰优于简短,主张消息应解释“为什么”而非仅描述“什么”。
  • 依赖 staged changes 和上下文推断,建议确认项目语言和格式约定。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Commit Message Generator

Automatically generate conventional commit messages for staged changes.

Philosophy

Commit messages are the history and documentation of your code's evolution.

Core Beliefs

  1. Commits Tell a Story: Each commit should explain what changed and why
  2. Conventional Format Enables Automation: Structured messages power changelogs and semantic versioning
  3. Clarity Over Brevity: A clear 2-line message beats a cryptic 5-word one
  4. Context Matters: Messages should be understandable months later without additional context

Why Conventional Commits

  • Automated Changelogs: Generate release notes from commit history
  • Semantic Versioning: Determine version bumps (major/minor/patch) automatically
  • Better Searchability: Find specific types of changes quickly
  • Team Communication: Consistent format aids code review and collaboration

When to Use This Skill

Activate this skill when the user:

  • Mentions "commit", "committing", "staged changes", or "ready to commit"
  • Shows git add or git status output with staged changes
  • Asks "what should my commit message be?"
  • Says "I need to commit my changes"
  • Asks for help writing commit messages

Decision Framework

Before generating a commit message, ask yourself:

Is This Ready to Commit?

  • Yes - Staged changes represent a single logical unit of work
  • No - Multiple unrelated changes staged → Suggest splitting into separate commits
  • ⚠️ Maybe - Large changeset → Review to ensure it's cohesive

What Type of Change Is This?

  1. New functionalityfeat type
  2. Bug fixfix type
  3. Code improvement without behavior changerefactor type
  4. Documentation onlydocs type
  5. Tests onlytest type
  6. Multiple types → Suggest splitting commits

What Scope Makes Sense?

  • Module/component name - For focused changes (e.g., auth, api, ui)
  • Feature area - For cross-cutting changes (e.g., validation, logging)
  • No scope - For global changes (e.g., dependencies, config)

Should This Be Multiple Commits?

Split if staged changes include:

  • ✅ Unrelated features or fixes
  • ✅ Refactoring + new feature (split: refactor first, feature second)
  • ✅ Multiple bug fixes
  • ❌ Feature + tests (keep together)
  • ❌ Feature + documentation (keep together)

Decision Tree

User mentions commit
    ↓
Check: Staged changes?
    ↓ Yes
Check: Multiple unrelated changes?
    ↓ No
Check: Follows conventional commits pattern?
    ↓ Generate message
    ↓
Review with user → Commit

Workflow

1. Check for Staged Changes

git status
git diff --staged

If no staged changes, inform the user and suggest staging files first.

2. Analyze Recent Commits for Style

git log --oneline -10

Learn the repository's commit message conventions.

3. Generate Conventional Commit Message

Format: <type>(<scope>): <description>

Types:

  • feat - New feature
  • fix - Bug fix
  • docs - Documentation changes
  • style - Code style changes (formatting, semicolons, etc.)
  • refactor - Code refactoring (no functional changes)
  • test - Adding or updating tests
  • chore - Build process, dependency updates, etc.
  • perf - Performance improvements
  • ci - CI/CD changes

Example:

feat(auth): add two-factor authentication support

- Implement TOTP-based 2FA
- Add backup codes generation
- Include recovery flow for lost devices
- Update user profile settings UI

4. Drupal/WordPress-Specific Patterns

Drupal:

  • Config changes: feat(config): add user profile field configuration
  • Module work: fix(custom_module): correct permission check in access callback
  • Hooks: refactor(hooks): simplify hook_form_alter implementation

WordPress:

  • Theme work: style(theme): improve mobile navigation styles
  • Plugin work: fix(plugin): correct ACF field validation
  • Blocks: feat(blocks): add testimonial Gutenberg block

5. Present to User for Approval

When used via workflow-specialist agent: The agent will use AskUserQuestion to present the commit message for review:

  • Show the generated message
  • Ask: "Would you like to proceed with this commit message, or would you like to edit it?"
  • Options: "Approve and commit" or "Edit message"
  • If user selects "Other", they can provide their edited version

When used conversationally: Show the generated commit message and ask: "Here's a commit message based on your changes. Would you like me to commit with this message, or would you like to modify it?"

6. Execute Commit (only after approval)

git commit -m "commit message here"

Or for multi-line messages:

git commit -m "$(cat <<'EOF'
feat(auth): add two-factor authentication support

- Implement TOTP-based 2FA
- Add backup codes generation
- Include recovery flow
EOF
)"

Integration with CMS Cultivator

This skill complements the /pr-commit-msg slash command:

  • This Skill: Automatically triggered during natural conversation

- "I'm ready to commit" - "What should my commit message say?"

  • /pr-commit-msg Command: Explicitly invoked for staged changes

- User deliberately wants commit message generation - Batch generation workflow

Both use the same analysis approach but different invocation methods.

Best Practices

  1. Analyze the actual changes - Don't just use file names, understand what changed
  2. Be specific in scope - Use module name, component name, or feature area
  3. Include breaking changes - Add BREAKING CHANGE: footer if applicable
  4. Reference tickets - Include ticket numbers if found in branch name
  5. Follow project conventions - Match the existing commit style

Example Interactions

Example 1: Simple fix

User: "I fixed the login bug, ready to commit"
[Skill analyzes git diff]
Skill: "I'll generate a commit message for your login fix..."

Generated:
fix(auth): resolve session timeout on remember-me login

- Correct cookie expiration logic
- Add test coverage for remember-me flow

Would you like me to commit with this message?

Example 2: Feature addition

User: "Staged my changes, need to commit"
[Skill analyzes extensive changes]
Skill: "I see you've added a new dashboard widget. Here's a commit message..."

Generated:
feat(dashboard): add performance metrics widget

- Create new widget component
- Add database query for metrics
- Include responsive design
- Add widget to admin dashboard page

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Cursor

38.76%
按下载量换算41

Codex

29.93%
按下载量换算32

Claude Code

15.78%
按下载量换算17

Antigravity

8.23%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills