一键导入
changelog
Generate a changelog or release notes from recent git history. Use when asked to write a changelog, summarize recent commits, or produce release notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate a changelog or release notes from recent git history. Use when asked to write a changelog, summarize recent commits, or produce release notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Scaffold a new custom SKILL.md file interactively. Use when asked to create a new skill or slash command.
Create or switch to a feature branch, typically tied to a GitHub issue. Use when asked to create a branch or start work on an issue.
Create, view, list, or comment on GitHub issues. Use when asked to file, open, or manage GitHub issues.
Create, review, or manage GitHub pull requests. Use when asked to open, check, or merge a PR.
Run the linter, auto-fix what's fixable, and report the rest. Use when asked to lint or fix lint errors.
Run the project test suite and surface failures. Use when asked to run tests or check test status.
| name | changelog |
| description | Generate a changelog or release notes from recent git history. Use when asked to write a changelog, summarize recent commits, or produce release notes. |
| allowed-tools | Bash Read |
Generate a user-facing changelog grouped into Added / Changed / Fixed sections.
Recent git history: !{git log --oneline -30 2>/dev/null || echo "(no git history available)"}
Recent tags: !{git tag --sort=-creatordate 2>/dev/null | head -5 || echo "(no tags)"}
Scope: $ARGUMENTS
Steps:
v1.2.0..HEAD or a target version tag), run git log --oneline <scope> to get the relevant commits; otherwise use the recent history shown above.