在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用release
星标28
分支2
更新时间2026年1月22日 06:12
Bump version, commit, and tag a release
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Bump version, commit, and tag a release
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | release |
| description | Bump version, commit, and tag a release |
Trigger on: "release", "bump version", "prepare release", "new version"
When triggered, execute all steps (don't just show commands):
Determine version bump type from user input or ask:
patch (0.3.0 → 0.3.1) - bug fixesminor (0.3.0 → 0.4.0) - new featuresmajor (0.3.0 → 1.0.0) - breaking changesRun the release script:
bun run scripts/release.ts <type>
Stage all changes:
git add -A
Commit with version in message:
git commit -m "chore: release v<NEW_VERSION>"
Create annotated git tag with release notes:
git tag -a v<NEW_VERSION> -m "<RELEASE_NOTES>"
Write release notes summarizing what's in this release:
v<VERSION> - <SHORT_TITLE>## New Features, ## Bug Fixes, ## Technical, etc.git log $(git describe --tags --abbrev=0)..HEAD --onelinePush commits and tags:
git push && git push --tags
User: "release patch" → Run script with patch → git add -A → git commit -m "chore: release v0.3.1" → git tag -a v0.3.1 -m "v0.3.1 - Bug Fixes\n\n## Bug Fixes\n- Fixed crash on startup\n- Fixed save corruption" → git push && git push --tags
# View tag message
git tag -l -n99 v<VERSION>
# Create GitHub release from tag
gh release create v<VERSION> --notes-from-tag