一键导入
vibe-pipeline
Author and run VibeFrame YAML pipelines with vibe run, checkpoints, and budget controls.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Author and run VibeFrame YAML pipelines with vibe run, checkpoints, and budget controls.
用 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.
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.
| name | vibe-pipeline |
| description | Author and run VibeFrame YAML pipelines with vibe run, checkpoints, and budget controls. |
A VibeFrame pipeline is a YAML manifest executed by vibe run. Steps can
reference earlier outputs with $<step-id>.output, and the executor writes a
checkpoint under the output directory so failed runs can resume.
Use this skill when the user wants a reproducible multi-step media workflow, checkpointed execution, or budget-limited provider calls.
name: promo-video
budget:
costUsd: 8
maxToolErrors: 1
steps:
- id: image
action: generate-image
provider: openai
model: "2"
size: 1536x1024
quality: hd
prompt: "sleek product shot on a quiet studio background"
output: hero.png
- id: video
action: generate-video
provider: seedance
image: $image.output
prompt: "slow cinematic camera push, polished product demo motion"
duration: 5
ratio: "16:9"
output: hero.mp4
- id: titled
action: edit-motion-overlay
input: $video.output
description: "minimal lower-third title, clean sans-serif, subtle grain"
model: gemini
understand: auto
output: titled.mp4
Use scene-build and scene-render when a storyboard project already exists:
name: storyboard-render
budget:
costUsd: 2
maxToolErrors: 1
steps:
- id: build
action: scene-build
project: my-video
mode: batch
composer: openai
tts: kokoro
skipBackdrop: true
skipRender: true
- id: render
action: scene-render
project: my-video
output: renders/final.mp4
quality: standard
fps: 30
format: mp4
Keep this in sync with packages/cli/src/pipeline/types.ts and
packages/cli/src/pipeline/executor.ts.
generate-image, generate-video, generate-tts,
generate-sfx, generate-music, generate-storyboard, generate-motionedit-silence-cut, edit-jump-cut, edit-caption,
edit-noise-reduce, edit-fade, edit-translate-srt,
edit-text-overlay, edit-motion-overlay, edit-grade,
edit-speed-ramp, edit-reframe, edit-interpolate, edit-upscale,
edit-imageaudio-transcribe, audio-isolate, audio-dub, audio-duckdetect-scenes, detect-silence, detect-beatsanalyze-video, analyze-media, review-videocompose-scenes-with-skills, scene-build, scene-renderexportIf unsure, read the executor source. There is no public vibe run --list-actions command.
vibe run pipeline.yaml --dry-run
vibe run pipeline.yaml -o pipeline-output
vibe run pipeline.yaml -o pipeline-output --resume
vibe run pipeline.yaml -o pipeline-output --budget-usd 5
vibe run pipeline.yaml -o pipeline-output --json
Useful flags:
--dry-run validates the graph and shows upper-bound cost estimates.--resume skips completed checkpointed steps.--budget-usd, --budget-tokens, --max-errors override or extend the
manifest budget.--effort low|medium|high|xhigh forwards an LLM effort hint where supported.--json returns structured output for agents.Checkpoint file: <output-dir>/.pipeline-state.yaml.
image, motion, title, render)..png, .mp4, .mp3, .json).$<step-id>.output rather than repeating file paths.budget: block for any pipeline that can call image/video providers.scene-build for storyboard projects and generate-* / edit-* for
standalone media chains.When converting a shell sequence, map each vibe ... command to one action and
turn downstream input paths into step references.