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" passesexamples/ship_feature.loop (abridged)