📝
WritingPython

Changelog Generator

by laolaoshiren

Changelog Generator is a Writing skill for Claude Code, published by laolaoshiren in claude-code-skills-zh.

786 stars84 forkson laolaoshiren/claude-code-skills-zhAdded 2026/08/23+1% in starsRepository updated 2026/08/23
ai-agentawesome-listclaude-codeclaude-skillsdeveloper-toolsprompt-engineeringskills
Install in seconds
Install Changelog Generator
Copy Changelog Generator into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/laolaoshiren/claude-code-skills-zh/tree/main/skills/changelog-gen ~/.claude/skills/changelog-gen

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/laolaoshiren/claude-code-skills-zh.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
skills/changelog-gen/SKILL.md in laolaoshiren/claude-code-skills-zh
Installs to
~/.claude/skills/changelog-gen
Collection
One of 20 skills cataloged from this repository
Category
Writing1012 skills

What Changelog Generator does

Changelog Generator creates changelogs and release notes from Git history. Use it when you need to summarize commits into versioned change logs.

Changelog Generator is cataloged under Writing on DirSkills. Changelog Generator comes from a repository tagged ai-agent, awesome-list, claude-code, claude-skills and developer-tools.

Documentation

README

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 规则:

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Changelog Generator

  • What else does laolaoshiren publish alongside Changelog Generator?

    Changelog Generator is one of 20 skills that DirSkills catalogs from laolaoshiren/claude-code-skills-zh, the repository it ships in. Its siblings there include API Tester, Chinese Code Reviewer and Chinese Documentation Generator. Each one is a separate skill with its own page in this directory, installs the same way Changelog Generator does, and is maintained by laolaoshiren in that same repository. The rest of the collection is listed on the laolaoshiren/claude-code-skills-zh page.

  • How does Changelog Generator compare to other Writing skills?

    Changelog Generator ranks #562 by stars among the 1012 Writing skills in this catalog. The most-starred ones next to it are Article Writing, Social Media Content Calendar and Knowledge Comic Creator. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Changelog Generator against them. Open each page to compare what they document and how they install.

More from laolaoshiren/claude-code-skills-zh

Changelog Generator is one of 20 skills cataloged on DirSkills from laolaoshiren/claude-code-skills-zh.

See all 20 skills
🧪
1w ago

API Tester

API Tester generates and verifies API tests from OpenAPI, routes, types, and existing tests. Use it to add interface tests, validate contracts, create regressions, or investigate compatibility without guessing responses or sending writes without approval.
Quality
78684
🔍
1w ago

Chinese Code Reviewer

Chinese Code Reviewer generates structured code review reports in Chinese. Use it when you need to check code quality, bugs, performance, security, and design issues.
Quality
78684
📚
1w ago

Chinese Documentation Generator

Chinese Documentation Generator creates Chinese technical documentation from a codebase, including project overviews, quick start guides, API references, examples, and FAQs. Use it when you need Markdown docs for a project or API.
Writing
78684
🗄️
1w ago

Database Migrator

Database Migrator compares schemas, identifies table and column changes, and generates migration scripts with rollback steps. Use it when you need database upgrades, schema changes, or framework-specific migrations.
DevOps
78684
🔍
1w ago

Dependency Auditor

Dependency Auditor 审计 Node.js、Python、Go、Rust、JVM 和 Ruby 项目的依赖漏洞、版本健康度与许可证事实。适合在检查 lockfile、manifest 或生成不改依赖的中文审计报告时使用。
Quality
78684
🗂️
1w ago

Directory Structure Mapper

Directory Structure Mapper generates an annotated directory tree to help understand how a codebase is organized. Use it when you need a quick overview of folders, key files, and module responsibilities.
Automation
78684