Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计提醒

conventional-commit-batcher传统提交批处理程序

Agent Skill

conventional-commit-batcher 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

392

周安装

16

GitHub Stars

1

下载量

127
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:conventional-commit-batcher(传统提交批处理程序)
来源仓库:https://github.com/cnkang/conventional-commit-batcher
仓库路径:skills/conventional-commit-batcher
安装命令:
npx skills add https://github.com/cnkang/conventional-commit-batcher --skill conventional-commit-batcher
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cnkang/conventional-commit-batcher --skill conventional-commit-batcher

简介

conventional-commit-batcher 将混乱的工作树转换为清晰的 Conventional Commit 历史记录。

  • 强制拦截所有提交操作,按意图分组并防止混合不同功能点的修改。
  • 适用于需要保持可审查性、避免随意合并的场景。
  • 必须激活后才能执行任何 git add/commit/push 相关操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Conventional Commit Batcher

Use this skill to turn a messy working tree into clean, reviewable Conventional Commit history.

Commit Interception (MANDATORY)

This skill MUST be activated for ANY commit-related operation, including:

  • user asks to commit, stage, or push changes
  • user asks to "save" or "check in" code
  • any workflow that would result in git add, git commit, or git push

Do NOT run git add or git commit directly without going through this skill's workflow.

Use This Skill When

  • any commit operation is performed through an agent (automatic interception)
  • changes from different intents are mixed in one branch
  • you want a plan-first commit process before opening a PR
  • you need reliable Conventional Commit messages across team and agents

Skip This Skill When

  • the change is tiny and clearly single-intent
  • you only need one quick commit without batching

Note: even when the skill could be skipped, if it is installed, the agent will still run the workflow and safety gates. The result may be a single batch, which is fine.

Default Behavior: Auto-Execute

By default, the skill inspects changes, splits into logical batches, runs safety gates, and commits directly — without waiting for user confirmation.

To see the plan before execution, explicitly ask:

Show me the commit plan first before executing.

High-Success Prompt (Plan-First Mode)

Use this prompt only when you want to review the plan before execution:

Inspect my current git changes and split them into logical Conventional Commit batches.
Output a full Commit Plan first.
Do not run git add or git commit until I confirm the plan.
After confirmation, execute each batch one by one.

Output Contract

In auto-execute mode (default), the agent outputs a brief per-batch summary as each batch is committed.

In plan-first mode (user requested), the agent outputs the full plan before any staging/commit:

Commit Plan
Batch #1: <type(scope): subject>
Intent: <why this batch exists>
Files/Hunks:
- <path> (...)
Staging commands:
- git add ...
Commit command:
- git commit -m "..."

Required Behavior

  • Always load references/core-rules.md first.
  • Treat references/core-rules.md as the single source of truth.
  • Run python3 scripts/precommit_safety_gate.py before every commit attempt when Python is available; otherwise run the equivalent manual gate checks from references/core-rules.md.
  • Run the sensitive-data gate before every commit and require explicit user confirmation if risky files/hunks are detected.
  • When any gate reports risk, include triggered file paths and brief evidence in user-facing output, plus a concrete "please review" suggestion.
  • Run the .gitignore/local-artifact gate before every commit and require explicit user confirmation if suspicious files are present.
  • Run branch/conflict/large-file/empty-stage safety checks before every commit.
  • Never skip commit-time checks with --no-verify.
  • If check/hook fails, stop and report concise diagnostics.

Entrypoints

  • Codex skill: SKILL.md
  • Codex repo loader: AGENTS.md
  • Claude: CLAUDE.md, .claude/agents/conventional-commit-batcher.md, .claude/commands/commit-batch.md
  • Kiro: .kiro/agents/conventional-commit-batcher.json, .kiro/steering/commit-batching.md
  • Shared skill (Kimi / Qwen / Gemini): .agents/skills/conventional-commit-batcher/SKILL.md
  • Shared subagent (Qwen / Gemini): .agents/agents/conventional-commit-batcher.md
  • OpenAI: agents/openai.yaml

References

  • Canonical rules: references/core-rules.md
  • Commit plan examples: references/plan-examples.md
  • Commit batching guidance: references/commit-batching-guide.md
  • commit-msg hook example: references/commit-msg-hook-example.md
  • Agent setup docs:

- references/codex-setup.md - references/claude-setup.md - references/kiro-setup.md - references/kimi-setup.md - references/qwen-setup.md - references/gemini-setup.md

  • Validator script: scripts/validate_conventional_commit.py
  • Safety gate script: scripts/precommit_safety_gate.py
  • Validator tests: scripts/test_validate_conventional_commit.py
  • Safety gate tests: scripts/test_precommit_safety_gate.py

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.54%
按下载量换算49

Claude

29.24%
按下载量换算37

Cursor

18.11%
按下载量换算23

Gemini CLI

10.74%
按下载量换算14

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills