genmedia-workflow
Design and execute multi-step media workflows with genmedia. Use this for pipelines that combine planning, generation, editing, image or video utilities, audio, subtitles, batching, and final delivery manifests.
How do I install this agent skill?
npx skills add https://github.com/kyh/vibedgames --skill genmedia-workflowIs this agent skill safe to install?
No partner audit is available yet. Read the source before installing.
What does this agent skill do?
Genmedia workflow production
Runtime: All endpoint calls use the
vg mediaCLI (npm install -g vibedgames, orpnpm dogfoodin this repo). The FAL key lives on the vibedgames server, so there is no per-machine setup. See thegenmediaskill for the command reference.
Use this skill when a single model call is not enough. A workflow is a planned sequence of vg media calls with clear inputs, outputs, dependencies, and quality checks.
Load references as needed:
references/pipeline-patterns.mdreferences/node-rules.mdreferences/utility-endpoints.mdreferences/recipes.mdmodel-routingfor creative model defaults
Use model-routing for default creative model choices. Still inspect schemas,
check pricing when cost matters, and use exact endpoint fields.
Inputs to collect
Ask only for missing information that changes the pipeline:
- Final deliverable: image set, video, clips, audio, subtitles, dataset, social batch, product campaign, storyboard, style exploration.
- Source assets: product images, character references, first frames, video, audio, logo, transcript, brand guide.
- Runtime limits: quality target, cost sensitivity, number of variants, duration, aspect ratios, deadline.
- Continuity requirements: product identity, character face, scene layout, voice, color grade.
- Model preference: ask the user only when quality, speed, cost, or audio tradeoffs are not clear from the brief.
Core workflow
-
Write a short pipeline graph before running anything.
input assets -> planner -> generation nodes -> utility nodes -> QA -> final outputs -
Resolve endpoints for each role. Check known endpoint IDs first.
vg media models --endpoint_id openai/gpt-image-2 --json vg media models --endpoint_id fal-ai/nano-banana-pro/edit --json vg media models --endpoint_id bytedance/seedance-2.0/image-to-video --json vg media models --endpoint_id xai/grok-imagine-video/image-to-video --json vg media models --endpoint_id veed/fabric-1.0 --jsonUse text search only as fallback discovery for roles not covered by
model-routingor the utility reference:vg media models "image generation product photography" --json vg media models "image editing reference preservation" --json vg media models "image to video" --json vg media models "subtitle video utility" --json vg media docs "fal.ai workflow utility endpoints" --json -
Inspect every endpoint before use.
vg media schema <endpoint_id> --json vg media pricing <endpoint_id> --json -
Upload local files once and reuse returned URLs.
vg media upload ./input.png --json vg media upload ./voiceover.wav --json -
Run each node with JSON output. Use async for slow generation.
vg media run <endpoint_id> --<field> "<value>" --json vg media run <endpoint_id> --<field> "<value>" --async --json vg media status <endpoint_id> <request_id> --download "./outputs/workflow/{request_id}_{index}.{ext}" --json -
For downstream nodes, pass the media URL from the previous
resultwhen it is available. If you only have a local file path, upload it first. -
Download final assets with templates that cannot collide.
--download "./outputs/workflow/{request_id}_{index}.{ext}" -
Return a compact manifest.
{ "goal": "short deliverable description", "nodes": [ { "id": "shot_01", "role": "image_to_video", "endpoint_id": "...", "request_id": "...", "input_urls": ["..."], "output_urls": ["..."], "downloaded_files": ["..."], "notes": "continuity or defect notes" } ], "final_files": ["..."] }
Pipeline rules
- Keep one node responsible for one clear transformation.
- Fan out independent generation, crop, upscale, subtitle, or variation nodes.
- Keep sequential chains only when node B needs node A output.
- For consistency, prefer reference/edit or image-to-video over independent text-only generations.
- For default creative model choices, follow
model-routingunless the user names a model. - Use utility endpoints for deterministic work: crop, resize, grid, composite, audio merge, subtitle, speed change, compression.
- Record endpoint, schema-relevant parameters, request ID, and output path for every node.
- If a 422 error occurs, read
validation_errors, inspect schema again, then fix the exact field.
Quality gate
Before returning, verify:
- The pipeline graph matches the requested deliverable.
- No generation model was chosen from memory alone.
- All local source files were uploaded before use.
- Final files were saved through
--download. - Utility endpoints used exact schema fields.
- Continuity anchors were repeated where identity or product fidelity matters.
- Each node output is either accepted, retried, or marked with a defect.
If the workflow becomes too complex, stop expanding and ask the user to choose between faster iteration, higher fidelity, or broader variation.
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/kyh/vibedgames/genmedia-workflow">View genmedia-workflow on skillZs</a>