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

stage

One step of a pipeline โ€” a story. Structure

Syntax

stage <name>:
  goal: โ€ฆ

What it does

One step of a pipeline. A stage's body is an ordinary loop (goal, done-when, gates, transitions) โ€” a single story. A stage-level git: or models: block lands on that stage's loop.

Example

stage "story: email and password login":
  goal: users log in with email and password
  look at: src/auth/, docs/architecture.md
  done when "pnpm test auth/login" passes
  after 8 tries: stop and warn "login story stuck"
a story stage

Related