LoopFlow
Tutorial Workshop Keywords ๐ŸŽฎ LoopFlow Lab
Keywords / run / then run

run / then run

A step inside a flow. Structure

Syntax

run "<file.loop>"
then run "<file.loop>"
โ€ฆ with the result of <step>

What it does

A flow step. run "x.loop" runs every definition in that file; then run chains the next and receives the previous step's text summary; with the result of <step> pulls the handoff from a named earlier step instead of the previous one.

Example

flow "release":
  run "build.loop"
  then run "test.loop"
  then run "notes.loop" with the result of build
named handoff

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