release
星标11
分支0
更新时间2026年7月18日 18:13
Use when the user wants to create a new release. Handles changelog updates, version bumping, and git tagging.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Use when the user wants to create a new release. Handles changelog updates, version bumping, and git tagging.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
| name | release |
| description | Use when the user wants to create a new release. Handles changelog updates, version bumping, and git tagging. |
Execute 'mvn test' and ensure all tests pass successfully. If there are test failures, stop and warn the user.
Ask the user if the release is major, minor or patch.
CHANGELOG.md file at the project root.## Release v<MAJOR>.<MINOR>.<PATCH>.major: +MAJOR, MINOR=0, PATCH=0minor: +MINOR, PATCH=0patch: +PATCH## Unreleased section.Added, Changed and Fixed are all empty → stop and warn the user that the changelog is likely missing content.## Unreleased → ## Release v<NEW_VERSION>.## Unreleased block above the renamed release.git push
git tag -a v<VERSION> -m "Release v<VERSION>"
git push origin v<VERSION>