Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

git-commit-trailersgit 提交预告片

Agent Skill

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

总安装

264

周安装

11

GitHub Stars

28

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill git-commit-trailers

简介

git-commit-trailers 在提交消息中添加标准化 trailers(如 Signed-off-by),满足合规要求。

  • 适合遵循 DCO 或其他法律声明的开源项目。
  • 自动插入或更新 trailers 字段,无需手动编辑每条消息。
  • 仅修改提交元数据,不影响代码内容,相对安全。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Git Commit Trailers

Structured key-value metadata at the end of commit messages. Trailers drive release-please automation, attribution, and issue linking.

When to Use

NeedSkill
Trailer lines in commits (this skill)git-commit-trailers
Commit message format (type/scope/subject)git-commit-workflow
Issue reference keywords (Fixes/Closes/Refs)github-issue-autodetect
Release-please config setuprelease-please-configuration

Release-Please Trailers

These trailers directly control version bumps and changelog generation.

BREAKING CHANGE

Triggers a major version bump. Both forms are recognized:

feat(api)!: redesign authentication endpoints

BREAKING CHANGE: /v1/users endpoint removed. Use /v2/users instead.
ApproachExampleWhen to Use
! suffixfeat(api)!: remove endpointShort, self-evident breaks
Footer trailerBREAKING CHANGE: detailed explanationNeeds migration context
Bothfeat!: subject + BREAKING CHANGE: footerMaximum clarity

Both BREAKING CHANGE: and BREAKING-CHANGE: (hyphenated) are recognized.

Release-As

Force a specific version in the next release. Case-insensitive.

git commit --allow-empty -m "chore: release 2.0.0" -m "Release-As: 2.0.0"
Use CaseExample
Initial 1.0.0 from 0.xRelease-As: 1.0.0
Calendar versioningRelease-As: 2026.03.0
Skip version numbersRelease-As: 3.0.0

Multiple Changes in One Commit

A single commit can produce multiple changelog entries via footer messages:

feat: add v4 UUID to crypto

This adds support for v4 UUIDs to the library.

fix(utils): unicode no longer throws exception
  BREAKING-CHANGE: encode method no longer throws.

feat(utils): update encode to support unicode

Additional conventional commit messages must be at the bottom of the commit body.

BEGIN_COMMIT_OVERRIDE

Edit a merged PR body to override its changelog entry. Only works with squash-merge.

BEGIN_COMMIT_OVERRIDE
feat: add ability to override merged commit message

fix: correct typo in error message
END_COMMIT_OVERRIDE

Use when a commit message needs correction after merge without reverting.

Attribution Trailers

TrailerFormatWhen to Use
Co-authored-byName <email>Pair programming, AI-assisted work
Signed-off-byName <email>DCO compliance (Linux kernel, CNCF projects)
Reviewed-byName <email>Code review attribution
Tested-byName <email>Test verification
Acked-byName <email>Acknowledgment without full review

Issue references (Fixes #N, Closes #N, Refs #N) are also trailers — see github-issue-autodetect skill.

Decision Tree

What trailers does this commit need?
├─ Breaking API change? → BREAKING CHANGE: <description>
├─ Force specific version? → Release-As: x.x.x
├─ AI-assisted code? → Co-authored-by: Claude <noreply@anthropic.com>
├─ DCO-required project? → Signed-off-by: Name <email>
├─ Fixes/closes an issue? → See github-issue-autodetect
└─ None of the above → No trailers needed

Detect DCO requirement:

git log -20 --format='%B' | git interpret-trailers --parse | grep -c "Signed-off-by"

Detecting Project Conventions

Scan recent commits to discover what trailers a project uses:

# Parse all trailers from recent commits
git log -20 --format='%B' | git interpret-trailers --parse

# List unique trailer types
git log -20 --format='%B' | git interpret-trailers --parse | sort -u -t: -k1,1

# Count trailer usage
git log -50 --format='%B' | git interpret-trailers --parse | cut -d: -f1 | sort | uniq -c | sort -rn

Always match existing project conventions before adding new trailer types.

Composing Trailers with git interpret-trailers

# Add a trailer to a message
echo "feat(auth): add OAuth2" | git interpret-trailers \
  --trailer "Co-authored-by: Claude <noreply@anthropic.com>"

# Add multiple trailers
echo "feat(auth): add OAuth2" | git interpret-trailers \
  --trailer "Co-authored-by: Claude <noreply@anthropic.com>" \
  --trailer "Signed-off-by: Dev <dev@example.com>"

# Parse trailers from last commit
git log -1 --format='%B' | git interpret-trailers --parse

Agentic Optimizations

ContextCommand
Parse last commit trailers`git log -1 --format='%B' \git interpret-trailers --parse`
Check DCO convention`git log -20 --format='%B' \git interpret-trailers --parse \grep -c Signed-off-by`
Detect trailer patterns`git log -20 --format='%B' \git interpret-trailers --parse \sort -u -t: -k1,1`
Count trailer usage`git log -50 --format='%B' \git interpret-trailers --parse \cut -d: -f1 \sort \uniq -c \sort -rn`

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.1%
按下载量换算31

Claude

31.95%
按下载量换算28

Cursor

16.55%
按下载量换算15

Gemini CLI

10.19%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills