中国三峡大学硕士刘战 (@sanxialiuzhan)【技能分享】给项目写一个 release-notes Skill,发版不再临时翻 git log 中发帖

发版前写 release notes 很容易临时翻 git log,然后漏掉 breaking change 或迁移说明。这个场景适合做成 Skill。 
目标
让 agent 根据 git diff、commit、PR 标题,整理出稳定格式的发布说明。 
SKILL.md 草稿
---
name: release-notes
description: Generate release notes from git history, merged PRs, and changed files. Use before tagging a release or publishing a changelog.
---

# Release Notes

Collect:

1. User-facing changes
2. Bug fixes
3. Breaking changes
4. Mig...
 
 
Back to Top