Keywords / flow
flow
Chain whole .loop files in order. Structure
Syntax
flow "<name>":
run "a.loop"
then run "b.loop"
What it does
A pipeline lives in one file; a flow chains separate .loop files, run in order โ so a big effort is many small reusable files. Fail-fast; a short text summary carries forward.
Example
flow "ship":
run "build.loop"
then run "test.loop"
then run "deploy.loop":
a human approves firstexamples/ship_flow.loop