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

changelog-composer变更日志作曲家

Agent Skill

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

总安装

1,038

周安装

42

GitHub Stars

216

下载量

326
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mathews-tom/armory --skill changelog-composer

简介

changelog-composer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于版本发布说明和变更日志撰写的场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Changelog Composer

Transforms raw git history and PR descriptions into polished, audience-appropriate changelogs. Parses conventional commits, classifies changes by impact category, filters internal-only modifications, and produces structured release notes with PR links — following Keep a Changelog conventions.

Reference Files

FileContentsLoad When
references/conventional-commits.mdCommit type parsing, scope extraction, breaking change indicatorsRepository uses conventional commits
references/categorization-rules.mdChange classification logic, audience filtering, severity orderingAlways
references/audience-filter.mdUser-facing vs internal change detection, exclusion patternsAlways
references/changelog-formats.mdKeep a Changelog, GitHub Releases, announcement copy templatesFormat selection needed

Prerequisites

  • git — access to the repository history
  • gh (optional) — GitHub CLI for PR description extraction
  • A tagging strategy (semver tags) for identifying release boundaries

Workflow

Phase 1: Gather Raw Changes

Collect all changes between the previous release and the current state:

  1. Identify boundaries — Find the last release tag: git describe --tags --abbrev=0. If no tags exist, use the initial commit or a user-specified starting point.
  2. Extract commitsgit log <last-tag>..HEAD --oneline --no-merges
  3. Extract PR titlesgh pr list --state merged --base main --search "merged:>YYYY-MM-DD" or parse merge commit messages.
  4. Parse conventional commits — If the repository follows conventional commits (feat:, fix:, docs:, etc.), extract type, scope, and description. See references/conventional-commits.md.
  5. Collect breaking change indicators — Look for BREAKING CHANGE: in commit bodies, ! after type (feat!:), or explicit annotations in PR descriptions.

Phase 2: Classify Changes

Categorize each change by its impact:

CategoryConventional Commit TypeIndicators
Breaking Changesfeat!:, BREAKING CHANGE:API removal, signature change, behavior change
Featuresfeat:New capability, new endpoint, new command
Fixesfix:Bug correction, error handling improvement
Performanceperf:Speed improvement, memory reduction
Documentationdocs:README, API docs, guides
Internalchore:, ci:, refactor:, test:, build:No user-facing impact

For repositories without conventional commits, classify by reading the commit message and changed files. Code changes to public API → Feature or Fix. Test-only changes → Internal.

Phase 3: Filter for Audience

  1. Exclude internal changes by default:

- CI/CD configuration changes - Test additions/modifications - Dependency bumps (unless security-relevant) - Code refactoring with no behavior change - Build system changes

  1. Include internal changes only when:

- They represent significant architecture shifts users should know about - They affect development workflow (contributing guide changes) - The changelog targets developers, not end-users

  1. Highlight breaking changes prominently — always at the top, always with migration guidance.

Phase 4: Compose Entries

For each included change, write a human-readable description:

  1. Lead with the impact — "Users can now..." or "Fixed issue where..."
  2. Be specific — "Reduced memory usage by 40% for large file processing" not "Performance improvements"
  3. Include migration guidance for breaking changes — what the user must change
  4. Link to source — PR number, issue number, or commit hash

Phase 5: Output

Assemble the changelog in the requested format, ordered by severity:

  1. Breaking Changes (always first)
  2. Features
  3. Fixes
  4. Performance
  5. Documentation

Output Format

## [{version}] - {YYYY-MM-DD}

### Breaking Changes
- **`function_name` parameter renamed** — `old_param` is now `new_param`.
  Migration: find/replace `old_param=` with `new_param=` in all call sites. ([#{pr}]({url}))

### Features
- **{Feature name}** — {What it enables and why it matters}. ([#{pr}]({url}))

### Fixes
- Fixed {symptom} when {condition}. ([#{pr}]({url}))

### Performance
- {Operation} is now {X}x faster / uses {X}% less memory. ([#{pr}]({url}))

### Documentation
- Added {guide/reference} for {topic}. ([#{pr}]({url}))

Configuring Scope

ModeInputOutputWhen to Use
releaseTag-to-HEADFull changelog entryPreparing a versioned release
sprintDate range or commit rangeSummary of changesSprint review, status update
prSingle PROne-line changelog entryPR description template

Calibration Rules

  1. User impact first. Every entry should answer "what does this mean for the user?" not "what did the developer do?"
  2. Breaking changes are non-negotiable. Never omit or bury breaking changes. They go first, with migration guidance.
  3. Specific over vague. "Fixed login timeout on slow connections" beats "Fixed bug." "Added CSV export for reports" beats "New feature."
  4. Link everything. Every entry links to its source PR or issue. Users who want details can follow the link.
  5. Exclude noise. Internal refactoring, dependency bumps, and CI changes do not belong in user-facing changelogs unless they have user-visible impact.

Error Handling

ProblemResolution
No tags exist in repositoryAsk for a starting commit or date. Default to the initial commit if the repository is small.
Repository doesn't use conventional commitsClassify by reading commit messages and changed files. Note reduced classification accuracy.
PR descriptions are empty or low-qualityFall back to commit messages. Flag entries that may need manual review.
Ambiguous change classificationDefault to "Features" for additions, "Fixes" for modifications. Mark uncertain entries for review.
Too many changes for a single releaseGroup by component/module. Consider whether the release should be split.
Merge commits obscure individual changesUse --no-merges to skip merge commits. Parse individual commits within merged PRs.

When NOT to Compose

Push back if:

  • The user wants to auto-publish release notes without review — changelogs require human judgment
  • The repository has no meaningful commit history (single "initial commit" with everything)
  • The request is for marketing copy, not technical release notes — different skill
  • The changes are not yet merged — changelog is for shipped changes, not in-progress work

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.39%
按下载量换算109

Claude

28.67%
按下载量换算93

Cursor

19.69%
按下载量换算64

Gemini CLI

9.14%
按下载量换算30

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills