release
Release this CLI by bumping package.json and letting the main-branch workflow tag, build, and publish
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Release this CLI by bumping package.json and letting the main-branch workflow tag, build, and publish
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| 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.