deployment-procedures

Guide production deployment procedures, risk management, and rollback protocols.

Updated Jan 31, 2026
One-click install
npx skills add https://github.com/tuyenht/Antigravity-Core --skill deployment-procedures-tuyenht
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deployment-procedures
Source: https://github.com/tuyenht/Antigravity-Core/tree/main/.agent/skills/deployment-procedures
Command: npx skills add https://github.com/tuyenht/Antigravity-Core --skill deployment-procedures-tuyenht

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides a comprehensive guide to safe and effective production deployment, minimizing risks and ensuring business continuity through robust rollback strategies.

Core Features & Use Cases

  • Deployment Principles: Understand the core concepts behind safe releases, from preparation to post-deployment verification.
  • Platform-Specific Guidance: Learn strategies tailored for various deployment environments like Vercel, Docker, and Kubernetes.
  • Rollback Strategies: Master the art of quickly reverting to a stable state when issues arise.
  • Use Case: A development team needs to deploy a critical update to their web application. This Skill guides them through pre-deployment checks, the deployment process itself, and provides a clear plan for rollback if any critical issues are detected post-release.

Quick Start

Guide me through the steps for a zero-downtime deployment using a blue-green strategy.

Frequently Asked Questions about deployment-procedures

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

FAQPage Schema
What is a zero-downtime deployment and how does it work?

Zero-downtime deployment uses strategies like blue-green deployments to update production environments without interrupting service. It routes traffic to a new version while keeping the old one running, ensuring continuous availability during the release process.

How do I safely deploy an update to production?

Safe production deployment requires following strict pre-deployment verification checks and workflow principles. You must validate the release candidate, monitor post-deployment checks, and maintain a clear rollback strategy to ensure business continuity if issues arise.

What is the best way to rollback a failed production release?

The best rollback strategy involves having a pre-planned reversion protocol tailored to your platform. You quickly revert the application to its last stable state using platform-specific techniques, ensuring rapid recovery and minimizing downtime during emergency response.

Does this deployment guidance work with Docker and Kubernetes?

Yes, the deployment procedures include platform-specific guidance for environments like Docker, Kubernetes, and Vercel. It provides tailored strategies for risk management and rollback protocols across these diverse technical stacks to ensure secure releases.

What are common anti-patterns in release management?

Common deployment anti-patterns include skipping pre-deployment verification, lacking a rollback plan, and ignoring post-deployment checks. Avoiding these unsafe practices prevents failed releases and ensures reliable software updates across your production environment.

When do I need a blue-green deployment strategy?

You need a blue-green deployment strategy when performing critical updates that require zero-downtime and immediate rollback capabilities. It maintains two identical production environments, allowing you to switch traffic instantly and revert if any post-release issues are detected.