changelog
仓库创建 2026年4月30日最近提交 3 天前SkillHot 收录 20 天前
▸ 精选理由
省去手工整理版本说明的重复工作。
▸ 风险提示
需要仓库 git 权限并读取提交历史
这个 Skill 做什么
从 git 提交、迭代与设计文档自动生成内部与玩家版变更日志。
把 Git 提交、迭代数据和设计文档自动整理成对内和面向玩家的变更日志,能按版本 tag 或 sprint 号输出不同粒度的内容。在发版、撰写发布说明或回顾迭代成果时用最省力。会自动从仓库抓提交和标签、筛选重要改动并生成两套语气/格式的日志,省去手工对齐记录的麻烦。
▸ 展开 SKILL.md 英文原文
Auto-generates a changelog from git commits, sprint data, and design documents. Produces both internal and player-facing versions.
65
Stars
7
Forks
40
仓库内 Skill
+9
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/striderZA/OpenCodeGameStudios/master/.agents/skills/changelog/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/striderZA/OpenCodeGameStudios/master/.agents/skills/changelog/SKILL.md"SKILL.MD 节选查看完整文件 ↗
## Phase 1: Parse Arguments Read the argument for the target version or sprint number. If a version is given, use the corresponding git tag. If a sprint number is given, use the sprint date range. Verify the repository is initialized: run `git rev-parse --is-inside-work-tree` to confirm git is available. If not a git repo, inform the user and abort gracefully. --- ## Phase 2: Gather Change Data Read the git log since the last tag or release: ``` git log --oneline [last-tag]..HEAD ``` If no tags exist, read the full log or a reasonable recent range (last 100 commits). Read sprint reports from `production/sprints/` for the relevant period to understand planned work and context behind c
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有