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

Keywords

Every construct in the LoopFlow language โ€” one page each, with syntax, what it does, examples, and a diagram where it helps.

Learning the language top-to-bottom? Read the tutorial. This is the by-keyword reference.

Core syntax โ€” the five decisionsThe engine. Objective, context, actions, verification, stopping โ€” plus the cycle that drives them, and where a human steps in.
The five decisions
goalObjective โ€” what "done" means, in plain language.look atContext โ€” scope what the agent reads first.allow / ask me beforeActions โ€” auto vs confirm.done whenVerification โ€” how a loop proves itself.when โ€ฆ (transitions)Stopping โ€” rules evaluated after each observe.after N tries (thrash guard)Stopping โ€” stop & warn if it gets stuck.
The cycle
each cycleThe repeated steps, in order.reflectTurn a failure into the next plan.
Human-in-the-loop
human gatesWhere a person steps in.
The rest of the syntaxEverything that composes loops into bigger workflows or configures a run โ€” none of it changes how a single loop thinks.
Compose โ€” scale one loop into many
loopA self-correcting unit of work.pipelineStages in order; fail-fast.stageOne step of a pipeline โ€” a story.flowChain whole .loop files in order.run / then runA step inside a flow.for eachRun a template once per item.
Augment a loop
use skills:Named skills the loop may invoke.remember inCross-run memory across runs.alsoFinishing passes after the goal is met.plan fromRead the plan from a file you control.
Ops & reuse
git:Branch / commit / push strategy.models:Model tiering by phase.use the <X> methodImport a reusable preset.scheduleWhen to run.targetWhere the runner operates.notifyWhere to send completion.