gen-changelog
Installation
SKILL.md
根据当前分支相对于 main 分支的修改,生成更新日志条目并同步到文档站点。
步骤
- 分析变更:查看
git log main..HEAD --oneline和git diff main..HEAD --stat,理解所有变更。 - 更新源 CHANGELOG:在根目录
CHANGELOG.md的## Unreleased下添加条目;如果变更属于packages/或sdks/下的子包,同时更新对应目录的CHANGELOG.md。 - 同步英文文档 changelog:运行
node docs/scripts/sync-changelog.mjs将根CHANGELOG.md同步到docs/en/release-notes/changelog.md。 - 更新中文文档 changelog:在
docs/zh/release-notes/changelog.md的## 未发布下添加对应的中文翻译条目,遵循现有格式和用词规范(参考docs/AGENTS.md中的术语表和排版规范)。 - Breaking changes(如有):如果变更包含破坏性变更(如移除/重命名选项、更改默认行为、迁移配置格式等),还需在
docs/en/release-notes/breaking-changes.md和docs/zh/release-notes/breaking-changes.md的## Unreleased/## 未发布下添加对应条目,遵循现有的格式(版本标题 + 小节 + 受影响/迁移说明)。
注意事项
- 条目风格遵循现有 CHANGELOG 的格式:
- 分类: 描述(如- Core: ...、- Web: ...)。 - 只写对用户有意义的变更,不写纯内部重构。
- 中文翻译应遵循
docs/AGENTS.md中的术语映射和排版规范。
Related skills
More from moonshotai/kimi-cli
codex-worker
Spawn and manage multiple Codex CLI agents via tmux to work on tasks in parallel. Use whenever a task can be decomposed into independent subtasks (e.g. batch triage, parallel fixes, multi-file refactors). When codex and tmux are available, prefer this over the built-in Task tool for parallelism.
68gen-docs
Update Kimi Code CLI user documentation.
32release
Execute the release workflow for Kimi Code CLI packages.
4translate-docs
Translate and sync bilingual documentation.
4pull-request
Create and submit a GitHub Pull Request.
4worktree-status
Audit all git worktrees in the current project. Use when the user asks about worktree status, which branches are merged, which have uncommitted changes, or which worktrees can be safely cleaned up.
4