Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
oakoss avatar

Deployment Strategy

  • 55 installs
  • 14 repo stars
  • Updated March 2, 2026
  • oakoss/agent-skills

Helps with devops & ci/cd tasks during AI-assisted development.

About

deployment-strategy is a Claude Code skill for devops & ci/cd. It helps solo builders move faster with AI-assisted coding.

  • deployment-strategy
  • DevOps & CI/CD
  • AI-coding skill

Deployment Strategy by the numbers

  • 55 all-time installs (skills.sh)
  • +2 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #689 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oakoss/agent-skills --skill deployment-strategy

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs55
repo stars14
Last updatedMarch 2, 2026
Repositoryoakoss/agent-skills

What it does

Helps with devops & ci/cd tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

Deployment Strategy

Overview

Covers deployment strategy selection, rollback safety, and progressive delivery patterns. Focuses on zero-downtime release techniques, blast radius management, and environment promotion workflows from development through production.

When to use: Choosing between blue-green, canary, or rolling deployments, implementing rollback procedures, configuring health checks and readiness gates, planning environment promotion workflows, integrating feature flags for progressive delivery.

When NOT to use: CI/CD pipeline mechanics and GitHub Actions workflows (use ci-cd-architecture skill), infrastructure provisioning and cloud platform selection (use ci-cd-architecture skill), application architecture decisions (use framework-specific skills).

Quick Reference

NeedStrategy
Instant rollbackBlue-green (swap traffic back to previous environment)
Gradual risk validationCanary (route 1-5% traffic, monitor, then expand)
Default Kubernetes updatesRolling (replace pods incrementally with maxSurge/maxUnavail)
Full environment replaceRecreate (stop all old, start all new; accepts brief downtime)
Feature-level controlFeature flags (decouple deploy from release)
Database schema changesExpand-contract migration (additive first, remove later)
Multi-environment promotiondev -> staging -> production with gates between each
Blast radius reductionCanary + feature flags + automated rollback triggers
Health verificationLiveness, readiness, and startup probes at infrastructure level
Rollback without redeployFeature flags to disable problematic code paths

Common Mistakes

MistakeCorrect Pattern
No rollback plan before deployingDefine rollback procedure and verify it works before every production release
Destructive database migrations alongside app deployUse expand-contract: add new columns/tables first, migrate data, remove old later
Canary without automated health monitoringSet error rate and latency thresholds that auto-halt rollout when breached
Blue-green with shared mutable databaseUse backward-compatible schema changes so both versions work against the same database
Feature flags without cleanup lifecycleAssign an owner and removal date to every flag; treat stale flags as tech debt
Skipping staging and deploying directly to productionPromote through environments with automated gates between each stage
Rolling deploy without readiness probesConfigure readiness probes so traffic routes only to healthy instances
Same environment config across all stagesUse environment-specific configuration with secrets management per environment
Manual rollback procedures in incident responseAutomate rollback triggers based on error rate, latency, and health check thresholds
Testing only happy paths before releaseInclude failure scenario testing: rollback drills, chaos testing, degraded mode testing

Delegation

  • Audit deployment safety of existing infrastructure: Use Explore agent to review deployment configs, health check definitions, and rollback procedures
  • Implement a specific deployment strategy: Use Task agent to configure blue-green, canary, or rolling deployment for a target platform
  • Plan migration from one deployment strategy to another: Use Plan agent to evaluate current strategy, define migration steps, and identify risks
If the ci-cd-architecture skill is available, delegate CI/CD pipeline setup and GitHub Actions workflow configuration to it.
Otherwise, recommend: npx skills add oakoss/agent-skills --skill ci-cd-architecture

References

  • Blue-green, canary, rolling, and recreate deployment strategies with configuration examples
  • Rollback procedures, health checks, feature flags, and blast radius management
  • Environment promotion workflows, configuration management, and secrets handling

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.