$npx skillfedfor your agent

changelog-generator

changelog-generator analyzes your Git history and produces structured CHANGELOG.md files following Keep a Changelog standards. It parses commits using Conventional Commits conventions, automatically categorizes changes by type, detects breaking changes, and supports semantic version bumping. Use it to initialize configs, generate full histories, incrementally update unreleased sections, or publish new versions—with optional GitHub Actions integration.

changelog-generator automatically creates CHANGELOG.md files by parsing Git commit history and organizing changes by type.

AI-generated summary based on this skill's SKILL.md

★ 410  61 MITupdated by peterfei

Decision gist · record as of 2026-06-29

changelog-generator automatically creates CHANGELOG.md files by parsing Git commit history and organizing changes by type. changelog-generator analyzes your Git history and produces structured CHANGELOG.md files following Keep a Changelog standards. It parses commits using Conventional Commits conventions, automatically categorizes changes by type, detects breaking changes, and supports semantic version bumping. Use it to initialize configs, generate full histories, incrementally update unreleased sections, or publish new versions—with optional GitHub Actions integration.

manual: git clone https://github.com/peterfei/ai-agent-team → cp -r ai-agent-team/.claude/skills/changelog-generator ~/.claude/skills/changelog-generator
.claude/skills/changelog-generator/SKILL.md · version 62cfa422

Use it when

  • Yes.
  • changelog-generator parses commits using the Conventional Commits standard, which structures messages as type(scope): description.

Verify before relying

Read SKILL.md below before installing (25 files). Open directory: indexed for reading, not audited.

Same gist for agents: .md · .json

Install

peterfei/ai-agent-team/changelog-generator · repository language: JavaScript

Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

How does changelog-generator generate changelog from git commits?

changelog-generator analyzes your Git history and produces structured CHANGELOG.md files following Keep a Changelog standards. It parses commits using Conventional Commits conventions to automatically categorize changes by type (features, fixes, breaking changes), then organizes them into version sections with proper semantic versioning.

Can changelog-generator auto create CHANGELOG.md incrementally?

Yes. changelog-generator supports incremental updates to your CHANGELOG.md. It can update the unreleased section with new commits since the last version, or publish a complete new version section when you're ready to release—without regenerating the entire history each time.

What commit message format does changelog-generator require?

changelog-generator parses commits using the Conventional Commits standard, which structures messages as type(scope): description. This allows it to automatically detect commit types (feat, fix, etc.), extract scopes, identify breaking changes marked with !, and categorize entries appropriately in your changelog.

How can I integrate changelog-generator into my CI/CD pipeline?

changelog-generator supports optional GitHub Actions integration, letting you automate changelog generation as part of your release workflow. Configure it to run on version tags or release triggers, automatically updating CHANGELOG.md and committing changes back to your repository.

Does changelog-generator detect breaking changes automatically?

Yes. changelog-generator detects breaking changes by parsing Conventional Commits markers (the ! prefix or BREAKING CHANGE footer) and categorizes them separately in your changelog. This helps readers immediately identify which updates require attention during upgrades.

What license does changelog-generator use?

changelog-generator is released under the MIT license, allowing free use, modification, and distribution in both open-source and commercial projects with minimal restrictions.

SKILL.md

Rendered from the published skill. Quoted content, verbatim.

changelog-generator - 智能变更日志生成器

概述

当用户需要生成或更新 CHANGELOG 时,此 skill 会自动完成以下流程: 1. 分析 Git 提交历史 2. 根据 Conventional Commits 规范解析提交 3. 智能分类和组织变更 4. 生成符合 Keep a Changelog 标准的 CHANGELOG.md 5. 支持版本发布和增量更新

支持的触发指令

用户可以通过以下方式触发此 skill: - "changelog" - 简易触发词 - "变更日志" - 简易触发词 - "帮我生成 CHANGELOG" - 生成完整的 CHANGELOG - "更新 CHANGELOG" - 增量更新 CHANGELOG - "发布新版本" - 发布正式版本 - "初始化 changelog 配置" - 创建配置文件

工作流程

步骤 1: 初始化配置(首次使用)

命令:

cd ~/.claude/skills/changelog-generator
npm install

# 在项目目录中初始化配置
cd /path/to/your/project
changelog-generate init

配置文件: .changelogrc.json

交互式配置会询问: - 当前版本号 - 语言选择(中文/英文) - 是否使用 emoji - 是否显示作者信息

步骤 2: 生成 CHANGELOG

场景 A: 首次生成完整 CHANGELOG

# 生成所有历史提交的 CHANGELOG
changelog-generate generate --all

# 生成指定范围的 CHANGELOG
changelog-generate generate --from v1.0.0 --to v2.0.0

场景 B: 增量更新 CHANGELOG

# 更新 [Unreleased] 区域
changelog-generate update

# 从指定标签开始更新
changelog-generate update --from v2.0.0

场景 C: 发布新版本

```bash

自动确定版本号(交互式)

changelog-generate

(truncated - see the full file via the links below)

File tree — 15 files
.claude/skills/changelog-generator/.gitignore
.claude/skills/changelog-generator/.npmignore
.claude/skills/changelog-generator/CHANGELOG.md
.claude/skills/changelog-generator/LICENSE
.claude/skills/changelog-generator/README.md
.claude/skills/changelog-generator/SKILL.md
.claude/skills/changelog-generator/bin/cli.js
.claude/skills/changelog-generator/docs/PHASE2_IMPLEMENTATION_SUMMARY.md
.claude/skills/changelog-generator/examples/default-config.json
.claude/skills/changelog-generator/jest.config.js
.claude/skills/changelog-generator/package.json
.claude/skills/changelog-generator/src/core/ChangelogGenerator.js
.claude/skills/changelog-generator/src/core/CommitClassifier.js
.claude/skills/changelog-generator/src/core/GitAnalyzer.js
.claude/skills/changelog-generator/src/exporters/HTMLExporter.js

Let your AI agent find skills like this

Example. Real query, live index.

You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.

wish › “Generate CHANGELOG.md automatically from Git commit history”

Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →

Related skills

chinese-commit-conventions
by jnMetaCode · jnMetaCode/superpowers-zh

Adapt Conventional Commits for Chinese development teams with localized type definitions, message templates, and tooling integration. Configure commitlint, husky, and conventional-changelog to enforce consistent commit practices across your team while keeping type keywords in English for tool compatibility.

MITdocs in Chineseupdated Jul 2026
★ 7,277repo stars
conventional-commits
by patricio0312rev · patricio0312rev/skills

Conventional Commits helps you write structured, semantic commit messages that enable automated versioning and changelog generation. It guides you through selecting commit types, adding optional scopes, and formatting descriptions in imperative mood, with support for breaking changes and footer tokens.

MITupdated Jan 2026
★ 52repo stars
Git Workflow Skill
by ScientiaCapital · ScientiaCapital/skills

This skill teaches standardized git practices including conventional commit formatting, semantic branch naming patterns, and merge strategy selection. It provides templates and guidelines to maintain consistency across teams while enabling automated changelog generation and reducing code review friction.

no license declared → metadata onlyupdated Jul 2026
★ 26repo stars
semantic-versioning
by BagelHole · BagelHole/DevOps-Security-Agent-Skills

This skill equips AI agents to handle version management workflows by applying semantic versioning conventions to your release pipeline. Streamline version bumping, changelog generation, and release tagging—letting your automation handle the repetitive parts of version control so your team focuses on what matters.

MITupdated May 2026
★ 44repo stars
Commit Message
by wasabeef · wasabeef/claude-code-cookbook

This skill analyzes your staged code changes and generates appropriate commit messages in your project's preferred format. It automatically detects conventions from commitlint config files and git history, supports multiple languages, and copies the top suggestion to your clipboard for instant use.

no license declared → metadata onlyupdated Apr 2026
★ 1,123repo stars
generating-changelog
by streamlit · streamlit/streamlit

This skill automates the creation of polished changelogs for Streamlit releases by extracting and formatting commits between specified git tags. It leverages Claude Code to transform raw git history into publication-ready release notes, streamlining your documentation workflow and ensuring consistent changelog quality across versions.

Apache-2.0for claude-codeupdated Jul 2026
★ 45,372repo stars

More skills Release Workflow (unlicensed)

Tags
git-automationrelease-managementsemantic-versioningcommit-parsingdocumentation-generationci-cd-integrationversion-bumpingchangelog-formattingmultilingual-supportbreaking-change-detection