dLazy AIdLazy AI
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:

ToolPurpose
promptRewrite free-form input into a stronger prompt for the next tool
scriptExpand a brief into a structured storyboard (subjects + per-shot prompts + first-frame prompts)
planGenerate a higher-level execution plan
executeExecute 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.

On this page