Unattended delivery
One invocation, many stories. The skill walks your list, dispatches a subagent to implement each story, ships a PR, waits on CI, and merges — then moves on. You only step in if something genuinely blocks.
An unattended orchestrator that runs the full delivery pipeline for every story in your sprint — dev, review, PR, CI, merge — without you in the loop.
flowchart LR
A[Story list] --> B[Validate]
B --> C[Confirm]
C --> D[Dev subagent]
D --> E[Review subagent]
E --> F{Issues?}
F -- yes --> D
F -- no --> G[Branch]
G --> H[PR]
H --> I{CI passing?}
I -- no, retries left --> J[CI fix subagent]
J --> H
I -- no, out of retries --> K[HALT]
I -- yes --> L[Merge]
L --> M{More stories?}
M -- yes --> B
M -- no --> N[Done]Originally delivered as bmad-loop in leanproxy-mcp#245. This is the standalone, hardened, distributable version — same state machine, same edge case handling, with a 3-layer TOML config, a zero-dependency installer, dry-run mode, and full resume semantics.
MIT. © 2026 Marco Mornati.