Summary
Chain runbooks into multi-step workflows where output from one feeds as params to the next.
Design
pipeline.yaml alongside runbook.yaml declares steps:
steps:
- run: infra.health-check
- run: infra.scale-deployment
params:
replicas: "$prev.healthy_count"
- TUI shows step-by-step progress view
- Web UI shows pipeline visualization
- MCP exposes pipelines as composite tools
Impact
Turns dops from "run a script" into "orchestrate an operation."
Summary
Chain runbooks into multi-step workflows where output from one feeds as params to the next.
Design
pipeline.yamlalongsiderunbook.yamldeclares steps:Impact
Turns dops from "run a script" into "orchestrate an operation."