Genmedia workflow production
Runtime: All endpoint calls run via the genmedia CLI. See the genmedia skill for command syntax; run genmedia init once if not yet installed.
Use this skill when a single model call is not enough. A workflow is a planned
sequence of genmedia calls with clear inputs, outputs, dependencies, and
quality checks.
Load references as needed:
references/pipeline-patterns.md
references/node-rules.md
references/utility-endpoints.md
references/recipes.md
model-routing for 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.
genmedia models --endpoint_id openai/gpt-image-2 --json
genmedia models --endpoint_id fal-ai/nano-banana-pro/edit --json
genmedia models --endpoint_id bytedance/seedance-2.0/image-to-video --json
genmedia models --endpoint_id xai/grok-imagine-video/image-to-video --json
genmedia models --endpoint_id veed/fabric-1.0 --json
Use text search only as fallback discovery for roles not covered by
model-routing or the utility reference:
genmedia models "image generation product photography" --json
genmedia models "image editing reference preservation" --json
genmedia models "image to video" --json
genmedia models "subtitle video utility" --json
genmedia docs "fal.ai workflow utility endpoints" --json
Inspect every endpoint before use.
genmedia schema <endpoint_id> --json
genmedia pricing <endpoint_id> --json
Upload local files once and reuse returned URLs.
genmedia upload ./input.png --json
genmedia upload ./voiceover.wav --json
Run each node with JSON output. Use async for slow generation.
genmedia run <endpoint_id> --<field> "<value>" --json
genmedia run <endpoint_id> --<field> "<value>" --async --json
genmedia status <endpoint_id> <request_id> --download "./outputs/workflow/{request_id}_{index}.{ext}" --json
For downstream nodes, pass the media URL from the previous result when 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-routing unless 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.
1---2name: genmedia-workflow3description: 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.4---5
6# Genmedia workflow production
7
8> **Runtime:** All endpoint calls run via the [genmedia CLI](https://github.com/fal-ai-community/genmedia-cli). See the `genmedia` skill for command syntax; run `genmedia init` once if not yet installed.
9
10Use this skill when a single model call is not enough. A workflow is a planned
11sequence of genmedia calls with clear inputs, outputs, dependencies, and
12quality checks.
13
14Load references as needed:
15
16- `references/pipeline-patterns.md`
17- `references/node-rules.md`
18- `references/utility-endpoints.md`
19- `references/recipes.md`
20- `model-routing` for creative model defaults
21
22Use `model-routing` for default creative model choices. Still inspect schemas,
23check pricing when cost matters, and use exact endpoint fields.
24
25## Inputs to collect
26
27Ask only for missing information that changes the pipeline:
28
29- Final deliverable: image set, video, clips, audio, subtitles, dataset, social
30 batch, product campaign, storyboard, style exploration.
31- Source assets: product images, character references, first frames, video,
32 audio, logo, transcript, brand guide.
33- Runtime limits: quality target, cost sensitivity, number of variants,
34 duration, aspect ratios, deadline.
35- Continuity requirements: product identity, character face, scene layout,
36 voice, color grade.
37- Model preference: ask the user only when quality, speed, cost, or audio
38 tradeoffs are not clear from the brief.
39
40## Core workflow
41
421. Write a short pipeline graph before running anything.
43
44 ```text
45 input assets -> planner -> generation nodes -> utility nodes -> QA -> final outputs
46 ```
47
482. Resolve endpoints for each role. Check known endpoint IDs first.
49
50 ```bash
51 genmedia models --endpoint_id openai/gpt-image-2 --json
52 genmedia models --endpoint_id fal-ai/nano-banana-pro/edit --json
53 genmedia models --endpoint_id bytedance/seedance-2.0/image-to-video --json
54 genmedia models --endpoint_id xai/grok-imagine-video/image-to-video --json
55 genmedia models --endpoint_id veed/fabric-1.0 --json
56 ```
57
58 Use text search only as fallback discovery for roles not covered by
59 `model-routing` or the utility reference:
60
61 ```bash
62 genmedia models "image generation product photography" --json
63 genmedia models "image editing reference preservation" --json
64 genmedia models "image to video" --json
65 genmedia models "subtitle video utility" --json
66 genmedia docs "fal.ai workflow utility endpoints" --json
67 ```
68
693. Inspect every endpoint before use.
70
71 ```bash
72 genmedia schema <endpoint_id> --json
73 genmedia pricing <endpoint_id> --json
74 ```
75
764. Upload local files once and reuse returned URLs.
77
78 ```bash
79 genmedia upload ./input.png --json
80 genmedia upload ./voiceover.wav --json
81 ```
82
835. Run each node with JSON output. Use async for slow generation.
84
85 ```bash
86 genmedia run <endpoint_id> --<field> "<value>" --json
87 genmedia run <endpoint_id> --<field> "<value>" --async --json
88 genmedia status <endpoint_id> <request_id> --download "./outputs/workflow/{request_id}_{index}.{ext}" --json
89 ```
90
916. For downstream nodes, pass the media URL from the previous `result` when it
92 is available. If you only have a local file path, upload it first.
93
947. Download final assets with templates that cannot collide.
95
96 ```bash
97 --download "./outputs/workflow/{request_id}_{index}.{ext}"
98 ```
99
1008. Return a compact manifest.
101
102 ```json
103 {
104 "goal": "short deliverable description",
105 "nodes": [
106 {
107 "id": "shot_01",
108 "role": "image_to_video",
109 "endpoint_id": "...",
110 "request_id": "...",
111 "input_urls": ["..."],
112 "output_urls": ["..."],
113 "downloaded_files": ["..."],
114 "notes": "continuity or defect notes"
115 }
116 ],
117 "final_files": ["..."]
118 }
119 ```
120
121## Pipeline rules
122
123- Keep one node responsible for one clear transformation.
124- Fan out independent generation, crop, upscale, subtitle, or variation nodes.
125- Keep sequential chains only when node B needs node A output.
126- For consistency, prefer reference/edit or image-to-video over independent
127 text-only generations.
128- For default creative model choices, follow `model-routing` unless the user
129 names a model.
130- Use utility endpoints for deterministic work: crop, resize, grid, composite,
131 audio merge, subtitle, speed change, compression.
132- Record endpoint, schema-relevant parameters, request ID, and output path for
133 every node.
134- If a 422 error occurs, read `validation_errors`, inspect schema again, then
135 fix the exact field.
136
137## Quality gate
138
139Before returning, verify:
140
141- The pipeline graph matches the requested deliverable.
142- No generation model was chosen from memory alone.
143- All local source files were uploaded before use.
144- Final files were saved through `--download`.
145- Utility endpoints used exact schema fields.
146- Continuity anchors were repeated where identity or product fidelity matters.
147- Each node output is either accepted, retried, or marked with a defect.
148
149If the workflow becomes too complex, stop expanding and ask the user to choose
150between faster iteration, higher fidelity, or broader variation.