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

remember in

Cross-run memory โ€” read past lessons on start, append the outcome on stop. Augment

Syntax

remember in "<file.md>"

What it does

Names a Markdown file the loop treats as its memory. On start it reads the file and feeds those lessons into the first plan; on stop it appends a dated entry recording how the run went. Across runs, the loop learns from its own history instead of starting cold each time.

Example

loop "keep the flaky e2e suite green":
  goal: the end-to-end suite passes three times in a row
  remember in "loop.memory.md"
  done when "pnpm test:e2e --repeat 3" passes
  each cycle: plan, then act, then observe
  when it fails: reflect, then plan again
a loop that carries lessons between runs

Related