LoopFlow
Tutorial Workshop Keywords ๐ŸŽฎ LoopFlow Lab
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 first
examples/ship_flow.loop

How it runs

summary โ†’summary โ†’ ๐Ÿ“„ build.loopall loops inside ๐Ÿ“„ test.loopall loops inside ๐Ÿ‘ค approves first๐Ÿ“„ deploy.loopall loops inside runs in order ยท โœ— a file that isn't satisfied halts the rest
A flow chains separate .loop files; after each, a short text summary carries into the next as context.

Related