From sre-skills
Use when designing deployment pipelines, release strategies, rollback mechanisms, environment promotion workflows, or progressive delivery patterns. Triggers on "CD pipeline", "deployment pipeline", "blue-green", "canary deploy", "rolling update", "progressive delivery", "environment promotion", "rollback strategy", "release automation", "GitOps deploy", or any continuous delivery / deployment question. Ships scripts for deployment strategy evaluator, rollback readiness checker, and environment drift detector. 4 references on deployment strategies, environment management, progressive delivery, and release gates. NOT a CI/build skill — specifically deployment and release automation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sre-skills:cd-pipelineThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Release automation that minimises blast radius. The goal is confidence — deploy frequently, detect problems early, roll back in under 5 minutes.
Release automation that minimises blast radius. The goal is confidence — deploy frequently, detect problems early, roll back in under 5 minutes.
ci-pipelineiacslo-architectDeployment strategy selection:
| Strategy | Downtime | Rollback speed | Resource cost | Best for |
|---|---|---|---|---|
| Rolling update | None | Slow (re-deploy previous) | Low | Stateless services |
| Blue-green | None | Instant (DNS/LB flip) | 2× compute | Services with hard rollback SLO |
| Canary | None | Fast (shift traffic back) | Low | High-traffic, risk-sensitive |
| Recreate | Brief | N/A | Low | Batch jobs, non-critical |
# Evaluate which deployment strategy fits a service's risk profile
python scripts/strategy_evaluator.py --service payments-api --slo-target 99.9 --traffic-rps 1200
# Check rollback readiness (previous artifact available, runbook exists, rollback tested)
python scripts/rollback_checker.py --service payments-api --env prod
# Detect config drift between environments
python scripts/env_drift_detector.py --source staging --target prod
npx claudepluginhub bipinalex/sre-skillsCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.