Workflows
Workflows
End-to-end media pipelines with the CLI.
This section is purely application-level — it shows how the CLI primitives compose into reusable workflows. The syntax for pipelines lives in CLI → Pipelines.
Building Blocks
A few text/auto tools were specifically designed as workflow primitives:
| Tool | Purpose |
|---|---|
prompt | Rewrite free-form input into a stronger prompt for the next tool |
script | Expand a brief into a structured storyboard (subjects + per-shot prompts + first-frame prompts) |
plan | Generate a higher-level execution plan |
execute | Execute a flattened plan output |
Combine them with image/video/audio models from the model reference to build full pipelines.
Composition Style
- Shell pipelines — chain
dlazy <tool>calls with stdin references (-,@N.path,@stdin:...). Best for ad-hoc work and CI.
See Recipes for worked examples.