changelog-gen

Installation
SKILL.md

Changelog 自动生成

触发条件

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

工作流程

  1. 获取 Git 历史git log --oneline --since="last tag"
  2. 分类提交 — 按 Conventional Commits 分类:
    • ✨ Features (feat)
    • 🐛 Bug Fixes (fix)
    • 📝 Documentation (docs)
    • ♻️ Refactoring (refactor)
    • ⚡ Performance (perf)
    • 🧪 Tests (test)
    • 🔧 Chores (chore)
  3. 生成 CHANGELOG — Markdown 格式,按版本号组织

输出格式

# Changelog

## [1.2.0] - 2026-04-14

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

### 🐛 Bug 修复
- 修复分页查询偏移量错误 (#125)

### 📝 文档
- 更新 API 文档 (#126)
Related skills
Installs
7
GitHub Stars
52
First Seen
Apr 23, 2026