Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计通过

commitscommits 命令行

Agent Skill

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

总安装

3,036

周安装

124

GitHub Stars

14

下载量

982
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/itechmeat/llm-code --skill commits

简介

commits 定义约定式提交规范,支持自动化 changelog 生成和语义化版本控制。

  • 适用于需要结构化消息格式、明确类型目的和 breaking changes 的场景。
  • 提供快速参考格式、常见类型和 SemVer 影响,提升版本管理效率。
  • 依赖本地 git 环境,建议确认项目类型和 breaking changes 处理规则。
  • commits 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Conventional Commits

Specification for structured commit messages that enable automated changelog generation and semantic versioning.

Quick Reference

Format

<type>[optional scope]: <description>

[optional body]

[optional footer(s)]

Common Types

TypePurposeSemVer
featNew featureMINOR
fixBug fixPATCH
docsDocumentation only-
styleFormatting, no code change-
refactorCode change, no feature/fix-
perfPerformance improvement-
testAdding/fixing tests-
buildBuild system, dependencies-
ciCI configuration-
choreMaintenance tasks-
revertRevert previous commit-

Breaking Changes

feat!: send email when product shipped

feat(api)!: change response format

chore!: drop support for Node 6

BREAKING CHANGE: use JavaScript features not available in Node 6.

Examples

Simple Commits

feat: add user authentication
fix: resolve memory leak in cache
docs: update API documentation
style: format code with prettier
refactor: extract validation logic
perf: optimize database queries
test: add unit tests for auth module
build: upgrade webpack to v5
ci: add GitHub Actions workflow
chore: update dependencies

With Scope

feat(auth): add OAuth2 support
fix(parser): handle empty arrays
docs(readme): add installation guide
refactor(api): simplify error handling

With Body

fix: prevent request racing

Introduce a request id and reference to latest request.
Dismiss incoming responses other than from latest request.

Remove timeouts which were used to mitigate the racing issue
but are obsolete now.

With Footer

fix: correct minor typos in code

Reviewed-by: John Doe
Refs: #123

Breaking Change in Footer

feat: allow config object to extend other configs

BREAKING CHANGE: `extends` key in config file is now used
for extending other config files.

Breaking Change with! and Footer

chore!: drop support for Node 6

BREAKING CHANGE: use JavaScript features not available in Node 6.

Revert Commit

revert: let us never again speak of the noodle incident

Refs: 676104e, a215868

Specification Rules

MUST

  1. Commits MUST be prefixed with a type (feat, fix, etc.)
  2. Type MUST be followed by colon and space
  3. Description MUST immediately follow the colon and space
  4. feat MUST be used for new features
  5. fix MUST be used for bug fixes
  6. Breaking changes MUST be indicated by ! before : OR BREAKING CHANGE: footer
  7. BREAKING CHANGE MUST be uppercase
  8. Footer token MUST use - instead of spaces (e.g., Reviewed-by)

MAY

  1. Scope MAY be provided after type: feat(parser):
  2. Body MAY be provided after description (blank line between)
  3. Footer MAY be provided after body (blank line between)
  4. Types other than feat and fix MAY be used
  5. ! MAY be used with BREAKING CHANGE: footer

Case Sensitivity

  • Types: case-insensitive (lowercase recommended for consistency)
  • BREAKING CHANGE: MUST be uppercase
  • BREAKING-CHANGE: synonym for BREAKING CHANGE

SemVer Mapping

Commit TypeSemVer BumpVersion Change
fix:PATCH1.0.0 → 1.0.1
feat:MINOR1.0.0 → 1.1.0
BREAKING CHANGE or !MAJOR1.0.0 → 2.0.0

Breaking changes override type — fix!: results in MAJOR bump.

Changelog Integration

Conventional Commits map directly to changelog entries:

Commit TypeChangelog Section
featAdded
fixFixed
perfChanged
refactorChanged
docs(usually omitted or Changed)
BREAKING CHANGEHighlight in Changed/Removed
revertRemoved or Fixed
Security fixesSecurity

Automated Changelog Generation

Tools like conventional-changelog, semantic-release, or release-please can:

  • Parse commit messages
  • Generate CHANGELOG.md entries
  • Determine next version number
  • Create releases automatically

See changelog skill for CHANGELOG.md format.

Common Patterns

Feature Development

git commit -m "feat(users): add profile page"
git commit -m "feat(users): add avatar upload"
git commit -m "test(users): add profile page tests"
git commit -m "docs(users): document profile API"

Bug Fix with Reference

git commit -m "fix(auth): resolve session timeout (#142)"

Breaking Change Flow

# Deprecate first
git commit -m "feat(api): add v2 endpoint

DEPRECATED: /api/v1/users will be removed in next major version"

# Later, remove
git commit -m "feat(api)!: remove v1 endpoints

BREAKING CHANGE: /api/v1/* endpoints have been removed.
Use /api/v2/* instead."

FAQ

What if commit fits multiple types?

Split into multiple commits when possible. This makes history more organized.

What if I used wrong type?

Before merge: git rebase -i to edit history. After release: not critical — commit will be missed by automated tools.

Do all contributors need to use this?

No. Use squash merging and maintainers can write proper message for the merge.

How to handle reverts?

revert: <original commit subject>

Refs: <commit SHA>

Git Configuration

Commit Template

Set up git to use template:

git config commit.template .gitmessage

See assets/commit-msg.template for template file.

Pre-commit Validation

Use assets/validate-commit-msg.sh with git hooks or CI.

Tools

ToolPurpose
commitlintLint commit messages
commitizenInteractive commit helper
conventional-changelogGenerate changelogs
semantic-releaseAutomated releases
release-pleaseGitHub release automation

Critical Prohibitions

  • Do not use vague messages ("fix stuff", "update", "wip")
  • Do not mix unrelated changes in single commit
  • Do not omit breaking change indicators
  • Do not use non-standard types without team agreement
  • Do not forget blank line between description and body

Agent Workflow for Commit Messages

MANDATORY: Before proposing branch name, commit message, or PR description, the agent MUST:

  1. Check all changed files using git status or git diff --name-only
  2. Review actual changes using git diff (staged and unstaged)
  3. Analyze ALL modifications — not just the files mentioned in conversation
  4. Base proposals on complete changeset — include all affected files, not partial list

Workflow Steps

# Step 1: Get list of all changed files
git status --short

# Step 2: Review actual changes (for unstaged)
git diff

# Step 3: Review staged changes
git diff --staged

# Step 4: Use the complete changeset to propose:
#   - Branch name
#   - Commit message
#   - PR description

Output Format

When user asks for commit message, provide:

  1. Branch name options (3 variants using conventional prefixes)
  2. Commit message variants (short/medium/detailed)
  3. PR description (summarized, not duplicating full changelog)

All proposals MUST be based on the actual git diff output, not assumptions.

Links

Templates

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

github-copilot

27.4%
按下载量换算269

OpenCode

25.09%
按下载量换算246

Claude Code

16.8%
按下载量换算165

kilo

13.02%
按下载量换算128

Gemini CLI

7.35%
按下载量换算72

windsurf

3.36%
按下载量换算33

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills