deployment-procedures

Guides production deployment decisions with rollback strategies, verification phases, and platform-specific workflows.

41|Updated Apr 14, 2026
One-click install
npx skills add https://github.com/DevayoshaUS/Women-scholarship --skill deployment-procedures-devayoshaus
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: deployment-procedures
Source: https://github.com/DevayoshaUS/Women-scholarship/tree/main/hackathon-main%20%281%29/hackathon-main/.agent/skills/deployment-procedures
Command: npx skills add https://github.com/DevayoshaUS/Women-scholarship --skill deployment-procedures-devayoshaus

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Deploying to production is risky, and teams often lack a structured decision framework for choosing platforms, verifying releases, and handling rollbacks when things go wrong. ## Core Features & Use Cases - Platform Selection Guidance: Decision trees and comparison tables for Vercel, Netlify, Railway, Render, VPS with PM2, Docker, and Kubernetes. - 5-Phase Deployment Workflow: Structured prepare, backup, deploy, verify, and confirm-or-rollback process with pre-deployment checklists. - Rollback & Emergency Procedures: Platform-specific rollback methods, zero-downtime strategies (rolling, blue-green, canary), and incident investigation order. - Use Case: Before pushing a new release to a VPS running PM2, use this Skill to walk through the pre-deployment checklist, confirm a backup exists, and define the rollback trigger before executing. ## Quick Start Ask the AI to walk you through a safe production deployment plan for your platform, including verification steps and a rollback strategy.

Frequently Asked Questions about deployment-procedures

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

FAQPage Schema
How do I deploy a web app to production safely?▼

Follow a five-phase process: prepare by verifying tests and builds, back up the current state, deploy while monitoring, verify health endpoints and key user flows, then confirm or rollback. Never deploy untested code or skip the backup step.

Which deployment platform should I choose for my app?▼

Match the platform to your app type: static sites fit Vercel, Netlify, or Cloudflare Pages; simple web apps fit Railway, Render, or a VPS with PM2; microservices need container orchestration; serverless workloads fit edge functions or Lambda.

When should I rollback a deployment instead of fixing forward?▼

Rollback immediately when the service is down or critical errors appear, and consider it when performance degrades more than 50 percent. Only fix forward for minor issues that can be resolved quickly without compounding errors.

What is the difference between rolling, blue-green, and canary deployments?▼

Rolling replaces instances one by one and suits standard releases. Blue-green switches traffic between two environments and suits high-risk changes needing easy rollback. Canary shifts traffic gradually and suits changes needing validation with real users.

How do I rollback a deployment on Kubernetes or Docker?▼

On Kubernetes, run kubectl rollout undo to return to the previous revision. With Docker, redeploy the previous image tag. On Vercel or Netlify, redeploy the previous commit, and on Railway or Render use the dashboard rollback option.

What should I check after deploying to production?▼

Verify the health endpoint responds, scan error logs for new exceptions, test key user flows, and confirm response times are acceptable. Monitor actively for the first 5 minutes, confirm stability at 15 minutes, and review metrics the next day.