release
星标11
分支1
更新时间2026年6月18日 10:40
Release this CLI by bumping package.json and letting the main-branch workflow tag, build, and publish
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Release this CLI by bumping package.json and letting the main-branch workflow tag, build, and publish
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
| name | release |
| description | Release this CLI by bumping package.json and letting the main-branch workflow tag, build, and publish |
Use this when the user asks to publish, ship, or release a new version of this CLI.
The release trigger is the package.json version on main.
bump package.json version -> validate locally -> commit -> push main
-> .github/workflows/release.yml tags vX.Y.Z
-> workflow runs check/build and uploads dist/{{APP_NAME}} to the GitHub Release
Do not create the tag manually unless the workflow is broken and the user explicitly accepts a manual recovery path.
bun run check
bun run build
package.json with the smallest correct SemVer change.bun run check after the version bump.main.gh run list --workflow release.yml --limit 1
gh run watch <run-id>
gh release view vX.Y.Z
package.json is the version source of truth; do not hardcode versions in source.