cd-pipeline-generator
Installation
SKILL.md
CD Pipeline Generator
CD is CI plus consequences. The artifact from CI flows through environments with gates between them. The shape is always the same; only the deploy mechanism changes.
The promotion ladder
CI artifact ──▶ dev ──▶ staging ──[gate]──▶ prod
Each arrow is a deploy. Each [gate] is a decision point. The pipeline's job is to make the arrows automatic and the gates explicit.
| Environment | Trigger | Gate before it | Rollback urgency |
|---|---|---|---|
| dev | Every green CI on main | None — auto | Don't bother |
| staging | Every green CI on main | None (or: schedule, daily) | Low |
| prod | Tag / release / manual | Human approval + smoke test | High |