deployment-workflow

Execute production deployments with pre-checks, rollback procedures, and post-deployment validation.

2|1|Updated Nov 21, 2025
One-click install
npx skills add https://github.com/HelloWorldSungin/AI_agents --skill deployment-workflow-helloworldsungin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deployment-workflow
Source: https://github.com/HelloWorldSungin/AI_agents/tree/main/skills/custom/examples/deployment-workflow
Command: npx skills add https://github.com/HelloWorldSungin/AI_agents --skill deployment-workflow-helloworldsungin

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a repeatable, safety-first deployment workflow to minimize outages and risk when shipping changes to production and staging environments.

Core Features & Use Cases

  • Pre-deployment verification and gating to ensure CI/CD checks have passed and staging is healthy.
  • Deterministic deployment strategies (rolling updates, blue-green, canary) with clear rollback options and traffic monitoring.
  • Runbook-style post-deployment validation including health checks, smoke tests, and documentation of results.
  • Practical guidance for incident response and rollback procedures, ensuring quick recovery and auditability.
  • Real-world scenario guidance: e.g., deploying a new API version with zero-downtime and automated verification.

Quick Start

Start by verifying pre-deployment checks in CI/CD, choose a deployment strategy (rolling, blue-green, or canary), execute the deployment, and perform post-deployment validation before closing the run and recording outcomes.

Frequently Asked Questions about deployment-workflow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I execute a zero-downtime Kubernetes production deployment with rollback procedures?

To execute a zero-downtime Kubernetes production deployment, use a safety-first workflow that enforces pre-deployment verification, applies rolling updates or blue-green strategies, and includes post-deployment validation with explicit rollback procedures.

What is the best way to automate canary deployment traffic monitoring and verification?

The best way to automate canary deployment traffic monitoring is to use a runbook-style workflow that executes incremental traffic shifting, monitors health checks continuously, and performs automated post-deployment smoke tests before completing the rollout.

How do blue-green deployments work in Kubernetes-like environments for staging and production?

Blue-green deployments in Kubernetes-like environments work by maintaining two identical production environments, shifting traffic from the old version to the new one after pre-checks pass, and keeping the old version active for immediate rollback if validation fails.

Can I use this deployment workflow if my CI/CD pipeline lacks automated staging health gates?

You can use this workflow, but it explicitly enforces pre-deployment verification and gating to ensure CI/CD checks have passed and staging is healthy, so missing automated staging health gates increases deployment risk and limits safety validation.

When should I trigger an automated rollback during a rolling update deployment?

You should trigger an automated rollback during a rolling update when post-deployment validation detects failed health checks, smoke tests fail, or traffic monitoring indicates anomalies, ensuring quick recovery and incident auditability.

Does this deployment workflow support post-deployment validation and incident documentation?

Yes, this deployment workflow supports post-deployment validation by enforcing runbook-style health checks, executing smoke tests, and requiring explicit documentation of deployment results and incident response actions for full auditability.