LoopFlow
Tutorial Workshop Keywords ๐ŸŽฎ LoopFlow Lab
Keywords / each cycle

each cycle

The repeated steps, in order. Building blocks

Syntax

each cycle: plan, then act, then observe

What it does

Lists the steps a cycle repeats โ€” any subset of plan, act, observe, in order. This is the default, so you can omit it. plan runs read-only; act makes the change; observe runs the done-when check.

Example

each cycle: plan, then act, then observe   # full self-correcting unit
each cycle: act, then observe              # skip planning โ€” just do + check
two shapes

How it runs

โœ“ pass planeach cycle actmake the change observerun done-when stopgoal met โœ“ when it fails โ†’ reflect, then plan again
Every cycle runs plan โ†’ act โ†’ observe; the done when check decides โ€” pass โ†’ stop, fail โ†’ reflect into the next plan.

Related