deployment-procedures

Guides production deployment decisions with rollback strategies and verification workflows.

Updated Mar 23, 2026
One-click install
npx skills add https://github.com/Helcio-Nogueira/Painel_Inteligente_Hackaton_2026 --skill deployment-procedures-helcio-nogueira
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: deployment-procedures
Source: https://github.com/Helcio-Nogueira/Painel_Inteligente_Hackaton_2026/tree/main/.agents/skills/deployment-procedures
Command: npx skills add https://github.com/Helcio-Nogueira/Painel_Inteligente_Hackaton_2026 --skill deployment-procedures-helcio-nogueira

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Deploying to production is risky, and teams often lack a structured way to decide platforms, prepare safely, verify releases, and roll back when things go wrong. This Skill provides deployment principles and decision frameworks instead of rigid scripts. ## 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: Prepare, backup, deploy, verify, and confirm-or-rollback phases with checklists for each stage. - Rollback and Emergency Procedures: Criteria for when to roll back, platform-specific rollback methods, and incident investigation order. - Use Case: Before pushing a new release to a VPS running PM2, use this Skill to build a pre-deployment checklist, define a rollback trigger, and plan a 15-minute post-deploy monitoring window. ## Quick Start Ask the assistant to help plan a safe production deployment with a rollback strategy for your application using the deployment-procedures skill.

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 production deployment?▼

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

Which deployment platform should I choose for my web app?▼

Static sites fit Vercel, Netlify, or Cloudflare Pages. Simple web apps work on managed platforms like Railway or Render, or a VPS with PM2 for more control. Microservices typically need container orchestration with Docker or Kubernetes.

When should I roll back a deployment?▼

Roll back immediately if the service is down or critical errors appear. Consider rollback when performance degrades more than 50 percent. For minor issues, a quick fix-forward may be acceptable, but prioritize speed over perfection when rolling back.

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

Blue-green switches all traffic between two environments, making rollback fast and suiting high-risk changes. Canary shifts traffic gradually to the new version, letting you validate with real users before full rollout.

How do I roll back a deployment on Kubernetes?▼

Use kubectl rollout undo to return to the previous revision. On Vercel or Netlify, redeploy the previous commit; on Railway or Render, use the dashboard rollback; on a VPS with PM2, restore the backup and restart the process.

Why should I avoid deploying on Fridays?▼

Late-week deployments leave little time to monitor and respond to issues before the weekend. Deploy early in the week so the team is available to watch metrics, verify stability, and handle rollbacks if problems appear.