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

plan from

Read the plan from a file you control. Ops & reuse

Syntax

plan from "docs/plan.md"

What it does

By default the loop's plan step has the agent write the plan. plan from "<file>" overrides that: the loop reads its plan from the quoted file (a hand-written .md, say) so it executes a plan you control instead of one the agent invents. Omit it and the agent writes the plan as usual. The path is relative to the .loop file. The source is extensible โ€” a URL or command could be added later โ€” but the file form is the one that exists today.

Example

loop "execute the billing plan":
  goal: implement the plan in docs/plan.md
  plan from "docs/plan.md"
  each cycle: plan, then act, then observe
  done when "pnpm test" passes
plan from a file you control

Related