deployment-procedures

Guide production deployments with verification checks and rollback strategies.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Deployment principles for safe production releases, enabling repeatable decisions, risk reduction, and confident rollbacks.

Core Features & Use Cases

  • Decision framework for platform selection across static sites, web apps, microservices, and serverless environments.
  • Verification categories including code quality, build, environment, and safety checks.
  • 5-phase workflow: PREPARE, BACKUP, DEPLOY, VERIFY, CONFIRM/ROLLBACK.
  • Use cases covering blue-green, rolling, and canary deployment strategies on platforms like Vercel, VPS, Docker, and Kubernetes.

Quick Start

Outline a safe deployment plan for your project and verify rollback readiness before deploying.

Frequently Asked Questions about deployment-procedures

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

FAQPage Schema
What is a safe production deployment workflow?

A safe production deployment workflow structures releases into five phases: PREPARE, BACKUP, DEPLOY, VERIFY, and CONFIRM/ROLLBACK. It enforces verification across code quality, build, environment, and safety checks to reduce risk and enable confident rollbacks.

How do I plan a rollback strategy for a web app?

To plan a rollback strategy, verify rollback readiness before deploying by creating backups and establishing clear confirmation criteria. This ensures you can safely revert to the previous state if post-deploy verification fails across your web app environments.

Does this deployment framework work with Kubernetes and serverless environments?

Yes, this deployment framework applies to microservices and serverless environments across platforms like Kubernetes, Vercel, Render, VPS, and Docker. It provides a decision framework for platform selection and supports blue-green, rolling, and canary deployment strategies.

What's the best way to deploy microservices without downtime?

The best way to deploy microservices without downtime is using blue-green, rolling, or canary deployment strategies. These approaches are supported within a structured workflow that mandates post-deploy verification and rollback readiness to maintain safety.

What verification checks are required before deploying to production?

Required verification checks before deploying to production include code quality, build, environment, and safety checks. These core categories are enforced during the PREPARE phase to ensure your project meets safety standards before release.

When should I use a canary deployment strategy over a rolling update?

You should choose a canary deployment strategy when you need to route a subset of traffic to the new version to test safety before a full release. A rolling update replaces instances gradually, while canary provides earlier rollback readiness if verification fails.