changelog-gen

changelog-gen is a skill for Claude Code, Codex from laolaoshiren/claude-code-skills-zh. It costs 19 tokens per session (908 once invoked), scanned A, original, MIT.

A changelog generator that turns Git history into a version-by-version record of project changes. A changelog is a readable summary of new features, fixes, breaking changes, documentation, and other updates.

In plain words
What is it for?
Use it to inspect changes since a tag or across the repository, classify commits, choose a Semantic Versioning bump, and produce release notes in a standard changelog format.
Why use it?
It saves time sorting commit messages into useful categories and reduces guesswork when choosing a version number. It also makes changes easier for users to understand between releases.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to inspect changes since a tag or across the repository, classify commits, choose a Semantic Versioning bump, and produce release notes in a standard changelog format.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/laolaoshiren/claude-code-skills-zh/changelog-gen
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add laolaoshiren/claude-code-skills-zh --skill changelog-gen
Clone the repo
git clone --depth 1 https://github.com/laolaoshiren/claude-code-skills-zh

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for changelog-gen

README.md
[![agentmods](https://agentmods.dev/badge/skills/laolaoshiren/claude-code-skills-zh/changelog-gen/github.svg)](https://agentmods.dev/skills/laolaoshiren/claude-code-skills-zh/changelog-gen)
Your own site
<a href="https://agentmods.dev/skills/laolaoshiren/claude-code-skills-zh/changelog-gen"><img src="https://agentmods.dev/badge/skills/laolaoshiren/claude-code-skills-zh/changelog-gen/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for changelog-gen

Your own site · 80×15
<a href="https://agentmods.dev/skills/laolaoshiren/claude-code-skills-zh/changelog-gen"><img src="https://agentmods.dev/badge/skills/laolaoshiren/claude-code-skills-zh/changelog-gen.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 908 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00019 $0.00908
Opus 5 $0.00010 $0.00454
Sonnet 5 $0.00004 $0.00182
Haiku 4.5 $0.00002 $0.00091

Measured 12d ago against content hash 456e7da97e27, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

changelog-gen scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/changelog-gen/SKILL.md · 99 lines

What it actually says

Changelog 自动生成

触发条件

当用户要求生成 changelog、更新日志、版本记录、release notes 时激活此技能。

工作流程

第 1 步:获取 Git 历史

# 先获取最近的 tag,再用 revision range 查询
git describe --tags --abbrev=0
git log --oneline <last-tag>..HEAD

# 或指定范围
git log --oneline v1.0.0..HEAD

# 仓库没有 tag 时,明确选择起始提交或查看全部历史
git log --oneline

第 2 步:分类提交

按 Conventional Commits 分类:

分类 Type 标识 图标
新功能 feat
Bug 修复 fix 🐛
文档 docs 📝
重构 refactor ♻️
性能优化 perf
测试 test 🧪
构建/工具 chore 🔧
Breaking Changes BREAKING CHANGE:! ⚠️
安全修复 fix(security) 或含 CVE 🔒
依赖更新 depschore(deps) 📦

第 3 步:版本号确定策略

遵循 Semantic Versioning 规则:

变更类型 版本变化 示例
Breaking Changes 主版本 +1 1.2.0 → 2.0.0
新功能 (feat) 次版本 +1 1.2.0 → 1.3.0
Bug 修复 (fix) 修订版本 +1 1.2.0 → 1.2.1
安全修复 (fix(security)) 修订版本 +1(紧急发布) 1.2.0 → 1.2.1

判断依据

  • 提交信息含 BREAKING CHANGE: 或 type 后加 !(如 feat!:)→ 主版本
  • 存在 feat 提交 → 次版本
  • fix/docs/chore 等 → 修订版本

第 4 步:生成 CHANGELOG

输出格式

# Changelog

## [1.3.0] - 2026-06-17

### ⚠️ Breaking Changes
- 移除废弃的 `/api/v1/users` 端点,统一使用 `/api/v2/users` (#130)

### ✨ 新功能
- 新增用户认证模块 (#123)
- 支持 OAuth2 登录 (#124)
- 新增批量导出功能 (#128)

### 🔒 安全修复
- 升级 lodash 修复原型污染漏洞 CVE-2025-XXXX (#129)

### 🐛 Bug 修复
- 修复分页查询偏移量错误 (#125)
- 修复并发写入导致的数据竞争 (#127)

### ⚡ 性能优化
- 优化大列表渲染性能,减少 50% 内存占用 (#126)

### 📝 文档
- 更新 API 文档 (#131)

### 📦 依赖更新
- 升级 axios 1.6.0 → 1.7.0 (#132)

注意事项

  • Breaking Changes 必须放在最前面,加粗突出显示
  • 每条记录关联 Issue/PR 编号,便于追溯
  • 安全修复需注明 CVE 编号(如有)
  • 版本号应与 git tag 保持一致
  • 如果是预发布版本,使用 -beta.1-rc.1 后缀
  • 可维护一个 CHANGELOG.md 文件,每次 release 追加到顶部
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 99 lines · 19 tokens per session scan A 456e7da97e27

Subscribe to this mod's changes

changelog-gen is a skill published in the GitHub repository laolaoshiren/claude-code-skills-zh (836 stars, last pushed 2d ago), licensed MIT. It adds 19 tokens to every session and 908 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

changelog-from-commits

Generate a user-facing CHANGELOG entry from raw git log output. Use when the user is preparing a release, says "what changed since last version", asks to write release notes, or wants to summarize a batch of commits for end users.

rockscy/solo-skills · 55 tokens

changelog-rules

Shared changelog conventions and formatting rules referenced by /create-changelog and /update-changelog. Not typically invoked directly.

tobihagemann/turbo · 29 tokens

update-changelog

Update the Unreleased section of CHANGELOG.md based on current changes. No-op if CHANGELOG.md does not exist. Use when the user asks to "update changelog", "add to changelog", "update the changelog", "changelog entry", "add changelog entry", or "log this change".

tobihagemann/turbo · 68 tokens

create-changelog

Create a CHANGELOG.md following keepachangelog.com conventions with version history backfilled from GitHub releases or git tags. Use when the user asks to "create a changelog", "add a changelog", "initialize changelog", "start a changelog", "set up changelog", "generate changelog", or "backfill changelog".

tobihagemann/turbo · 75 tokens

git

Granular git operations with conventional commits - stage, commit, push, PR, merge. Auto-splits commits by type/scope, blocks on secrets, delegates verbose work to git-manager subagent. GitHub CLI conventions: --body-file for PR bodies, treat gh pr checks exit 8 (pending) as retry not failure, guard run-id assignment…

vanducng/skills · 95 tokens

skill-management

Manage the lifecycle of agent skills in this repo - create new skills via skill-creator, pull/sync upstream skills with the vd CLI, validate frontmatter, bump versions, and ship releases through conventional commits. Use when the user says 'create a skill', 'add a skill', 'sync skills', 'release vd', 'bump version'…

vanducng/skills · 117 tokens