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

pipeline

Stages in order; fail-fast. Structure

Syntax

pipeline "<name>":
  stage <name>: โ€ฆ

What it does

Runs stages in order; a failing stage halts the rest. The natural mapping: an epic โ†’ a pipeline, each story โ†’ a stage.

Example

pipeline "ship feature":
  stage security:
    goal: no high or critical vulnerabilities
    done when "semgrep --severity=high" finds nothing
  stage build:
    a human approves the plan first
    goal: feature works and tests pass
    done when "pnpm test" passes
examples/ship_feature.loop (abridged)

How it runs

securitysemgrep โœ“ ๐Ÿ‘ค gatebuildpnpm test โœ“ ๐Ÿ‘ค gateuihuman review ๐Ÿ‘ค gatedeployhealth.sh โœ“ each stage runs only if the one before passed โ€” โœ— a failure halts the rest
An epic โ†’ a pipeline, each story โ†’ a stage; stages run in order with their own checks and gates.

Related