LoopFlow
Tutorial Workshop Keywords ๐ŸŽฎ LoopFlow Lab
Keywords / reflect

reflect

Turn a failure into the next plan. Building blocks

Syntax

when it fails: reflect, then plan again

What it does

The back-edge โ€” the loop's working memory. On a failed check, reflect reads the failure output and writes a short diagnosis, which becomes context for the next plan. The difference between retrying blindly and learning from each miss.

Example

when it fails: reflect on which layer broke, then plan again
the reflect back-edge

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