AgentStack
SKILL verified MIT Self-run

Deployment Procedures

skill-alex-voloshin-dev-ai-skills-deployment-procedures · by alex-voloshin-dev

Production deployment procedures with rollback plans, health checks, and verification steps. Use when deploying to production, planning rollback strategies, or verifying production health after deployment.

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-alex-voloshin-dev-ai-skills-deployment-procedures

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Deployment Procedures? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Deploy to Production

Production deployment skill providing rollback procedures, health check patterns, and verification checklists. Ensures safe, repeatable production deployments.

When to Use

  • Deploying application updates to production
  • Planning rollback strategies before deployment
  • Verifying production health after deployment
  • Investigating post-deployment issues

When NOT to Use

  • Deploying to staging (use deploy-staging skill workflow)
  • Making infrastructure changes (use infra-change skill workflow)
  • Planning release version and changelog (use release skill workflow)

Deployment Strategies

| Strategy | When to Use | Risk | Downtime | |---|---|---|---| | Rolling update | Standard deploys, stateless services | Low | Zero | | Blue-Green | Critical services, instant rollback needed | Low | Zero | | Canary | High-risk changes, gradual validation | Medium | Zero | | Recreate | Stateful services, breaking schema changes | High | Brief |

Rolling Update (Default)

  • Gradually replace old pods with new ones
  • Health checks gate the rollout — unhealthy pods stop the rollout
  • Configure maxSurge and maxUnavailable for rollout speed
  • Monitor error rates during rollout window

Canary Deployment

  1. Deploy new version to small subset (5–10% traffic)
  2. Monitor error rate, latency, and business metrics for 5–10 minutes
  3. If healthy → gradually increase traffic (25% → 50% → 100%)
  4. If degraded → route all traffic back to stable version

Blue-Green Deployment

  1. Deploy new version alongside current (green alongside blue)
  2. Run full smoke tests against green
  3. Switch traffic from blue to green
  4. Keep blue running for instant rollback (15–30 minutes)
  5. Decommission blue after confidence period

Pre-Deployment Checklist

  • [ ] All tests pass on release branch
  • [ ] Staging deployment verified
  • [ ] Database migrations tested (forward and rollback)
  • [ ] Feature flags configured
  • [ ] Monitoring dashboards ready
  • [ ] On-call team notified
  • [ ] Rollback plan documented and tested
  • [ ] Release notes prepared

Post-Deployment Verification

  • [ ] Health endpoint returns 200
  • [ ] Error rate ≤ pre-deploy baseline
  • [ ] Latency P95 within SLO target
  • [ ] No new error patterns in logs
  • [ ] Key user journeys functional
  • [ ] Database connections stable
  • [ ] External integrations responding
  • [ ] Alerts not firing

Integration

  • Follows rules: devops-engineer role (infrastructure), sre-engineer role (SLOs, monitoring)
  • Used by workflows: deploy-production skill, deploy-staging skill
  • Companion resources: rollback-procedure.md

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.