deployment-procedures

Plan and execute safe deployment rollouts with blue-green, canary, and rollback procedures.

1|Updated Sep 11, 2025
One-click install
npx skills add https://github.com/Dhumitech/DHUMI-AI-RESOURCE --skill deployment-procedures-dhumitech
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deployment-procedures
Source: https://github.com/Dhumitech/DHUMI-AI-RESOURCE/tree/main/AI-Engineer-planner-Skills/07-deploy/deployment-procedures
Command: npx skills add https://github.com/Dhumitech/DHUMI-AI-RESOURCE --skill deployment-procedures-dhumitech

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Deployment is risky and complex; this Skill provides structured principles and decision-making guidance to plan and execute safe production deployments.

Core Features & Use Cases

  • Platform-appropriate deployment strategies (blue-green, canary, rolling)
  • Pre-deployment verification categories and checklists
  • Clear rollback, recovery, and post-deployment verification procedures
  • Documentation and standardization across CI/CD pipelines

Quick Start

Plan and execute safe deployment rollouts across platforms.

Frequently Asked Questions about deployment-procedures

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

FAQPage Schema
How do I plan a safe deployment rollout for production?

Blue-green deployment and canary release are both safe deployment strategies covered here. Blue-green switches traffic between two identical environments, while canary gradually routes a subset of users to the new version to monitor for failures before a full rollout.

What should I include in a pre-deployment verification checklist?

A pre-deployment verification checklist should include platform selection, rollback readiness, and monitoring setup. These verification categories ensure your CI/CD pipeline meets all prerequisites before executing any production release.

How do I execute a rollback procedure after a failed release?

Executing a rollback procedure requires predefined recovery steps established before deployment. The structured rollback procedures ensure you can quickly revert to the previous stable state by enforcing rollback readiness as a strict pre-deployment prerequisite.

When should I choose a canary release over a rolling deployment?

Choose a canary release when you need to monitor real-world user impact on a small subset before a full rollout. A rolling deployment updates instances gradually, but canary releases provide safer verification for high-risk production changes.

Can I standardize deployment strategies across different platforms?

Yes, you can standardize deployment strategies across platforms by codifying decisions into repeatable procedures. This approach enforces consistent verification checks, rollback readiness, and CI/CD pipeline design regardless of the target platform.