deployment-procedures

Provides principles and decision-making guidance for deploying production applications safely.

Updated Feb 28, 2026
One-click install
npx skills add https://github.com/lucasfdigital/Orchard --skill deployment-procedures-lucasfdigital
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deployment-procedures
Source: https://github.com/lucasfdigital/Orchard/tree/main/skills/deployment-procedures
Command: npx skills add https://github.com/lucasfdigital/Orchard --skill deployment-procedures-lucasfdigital

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill addresses the inherent risks and complexities of deploying software to production environments, ensuring a structured, safe, and efficient release process.

Core Features & Use Cases

  • Strategic Deployment Planning: Guides users through selecting the right deployment strategy (Rolling, Blue-Green, Canary) based on risk and context.
  • Risk Mitigation: Emphasizes pre-deployment checks, robust rollback plans, and post-deployment verification to prevent downtime and data loss.
  • Use Case: A developer needs to deploy a critical update to a live web application. This Skill will guide them through the necessary checks, help them choose between a rolling update or a blue-green deployment, and outline the steps for verification and potential rollback.

Quick Start

Guide me through the steps to safely deploy a new version of my web application to production.

Frequently Asked Questions about deployment-procedures

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

FAQPage Schema
How do I safely deploy a new version of my web application to production?

Safely deploy an application by following structured guidance on pre-deployment checks, selecting an appropriate deployment strategy, and performing post-deployment verification to minimize risk and prevent downtime.

What is the difference between blue-green and canary deployment strategies?

Blue-green deployment switches traffic between two identical environments, while canary deployment gradually routes a subset of users to the new version. Choosing the right strategy depends on your specific risk tolerance and operational context.

How do I plan a rollback procedure for a microservices architecture?

Plan a rollback procedure for microservices by defining specific verification steps and decision points that trigger a reversion. This ensures you can quickly restore the previous stable state if post-deployment checks detect failures.

Can I use zero-downtime deployment strategies for static sites and serverless architectures?

Yes, zero-downtime deployment applies to static sites, simple web apps, microservices, and serverless architectures. The guidance focuses on understanding the reasoning behind deployment actions to ensure safe production releases across these environments.

What are the essential pre-deployment checks before releasing to production?

Essential pre-deployment checks involve verifying system readiness and confirming rollback plans are in place. These risk mitigation steps are critical for preventing downtime and data loss before executing any production release.