ワンクリックで
release
Bump VibeFrame versions, regenerate release artifacts, run verification, and prepare a version commit.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Bump VibeFrame versions, regenerate release artifacts, run verification, and prepare a version commit.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create video compositions, animations, title cards, overlays, captions, voiceovers, audio-reactive visuals, and scene transitions in HyperFrames HTML. Use when asked to build any HTML-based video content, add captions or subtitles synced to audio, generate text-to-speech narration, create audio-reactive animation (beat sync, glow, pulse driven by music), add animated text highlighting (marker sweeps, hand-drawn circles, burst lines, scribble, sketchout), or add transitions between scenes (crossfades, wipes, reveals, shader transitions). Covers composition authoring, timing, media, and the full video production workflow. For CLI commands (init, lint, preview, render, transcribe, tts) see the hyperframes-cli skill.
Author, repair, render, and inspect VibeFrame scene projects built from STORYBOARD.md and DESIGN.md.
Author, repair, render, and inspect VibeFrame scene projects built from STORYBOARD.md and DESIGN.md.
Bump VibeFrame versions, regenerate release artifacts, run verification, and prepare a version commit.
Check VibeFrame SSOT consistency across package versions, generated docs, model metadata, site counts, and agent host configs.
Run VibeFrame tests for one package or the whole monorepo and summarize failures.
| name | release |
| description | Bump VibeFrame versions, regenerate release artifacts, run verification, and prepare a version commit. |
Use this skill when the user asks Codex to run a VibeFrame release bump or fix a
missing version bump after feat: / fix: commits.
The bump is one of patch, minor, or major. Default to patch when
no bump is specified or when there is any doubt.
VibeFrame is still in 0.x. patch is the default and by far the most
common bump. minor is rare and must be explicitly justified — the shared
push gate (scripts/pre-push-validate.sh) blocks a non-patch bump that lacks a
Release-Type: trailer (see step 10).
patch: bug fixes, docs/tooling, UX polish, internal refactors, and most
ordinary feat: / fix: commits. Use this unless a rule below clearly
applies.minor: new public CLI command namespace, new MCP tool family, public API
contract additions, or a large product milestone.major: breaking changes or an intentional 1.0 milestone.When unsure, use patch.
Read the current root version:
jq -r '.version' package.json
Bump the root package:
npm version <patch|minor|major> --no-git-tag-version
Read the exact new version:
NEW_VERSION=$(jq -r '.version' package.json)
Set every workspace package to that exact version. Do not use pnpm -r exec npm version for this step because recursive pnpm includes the root package.
for dir in packages/cli packages/core packages/ai-providers packages/mcp-server packages/ui apps/web; do
(cd "$dir" && npm version "$NEW_VERSION" --no-git-tag-version)
done
Verify all package versions match:
for f in package.json packages/*/package.json apps/*/package.json; do
jq -r '.version' "$f"
done | sort -u
The output must contain exactly one version.
Build, regenerate references, lint, and test:
pnpm build
pnpm gen:reference
pnpm lint
pnpm -F @vibeframe/cli exec vitest run --bail 1
Generate the changelog for the new version:
git-cliff --tag v$NEW_VERSION -o CHANGELOG.md
Run the shared push gate:
bash scripts/pre-push-validate.sh
Stage the release files:
git add package.json packages/*/package.json apps/*/package.json CHANGELOG.md docs/cli-reference.md
Commit. For a patch bump, a plain message:
git commit -m "chore: bump version to $NEW_VERSION"
For a minor or major bump, the push gate requires a justification
trailer in the commit body, or it blocks the push:
git commit -m "chore: bump version to $NEW_VERSION" -m "Release-Type: minor: <why this is not a patch>"
Do not create a local tag. Do not push unless the user explicitly asks.
main via a PR, never a direct push (even
though main allows admin bypass). Put it on a chore/release-$NEW_VERSION
branch, open a PR, let CI go green, and merge:git switch -c chore/release-$NEW_VERSION
git push -u origin chore/release-$NEW_VERSION
gh pr create --fill --base main
Publishing is manual. After the version commit lands on main (through the PR)
and CI passes, run the Create release tag workflow to create vX.Y.Z, then
run Publish to npm manually with that tag. A human-created git push origin vX.Y.Z tag also triggers publish.yml, but CI and the tag helper do not
dispatch publishing automatically.