Agent skill

deployment-procedures

Production deployment principles and decision-making. Safe deployment workflows, rollback strategies, and verification. Teaches thinking, not scripts.

Nick44,414★ · +328/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill deployment-procedures --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/deployment-procedures/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Deployment Procedures > Deployment principles and decision-making for safe production releases. > **Learn to THINK, not memorize scripts.** --- ## ⚠️ How to Use This Skill This skill teaches **deployment principles**, not bash scripts to copy. - Every deployment is unique - Understand the WHY behind each step - Adapt procedures to your platform --- ## 1. Platform Selection ### Decision Tree ``` What are you deploying? │ ├── Static site / JAMstack │ └── Vercel, Netlify, Cloudflare Pages │ ├── Simple web app │ ├── Managed → Railway, Render, Fly.io │ └── Control → VPS + PM2/Docker │ ├── Microservices │ └── Container orchestration │ └── Serverless └── Edge functions, Lambda ``` ### Each Platform Has Different Procedures | Platform | Deployment Method | |----------|------------------| | **Vercel/Netlify** | Git push, auto-deploy | | **Railway/Render** | Git push or CLI | | **VPS + PM2** | SSH + manual steps | | **Docker** | Image push + orchestration | | **Kubernetes** | kubectl apply | --- ## 2. Pre-Deployment Principles ### The 4 Verification Categories | Category | What to Check | |----------|--------------| | **Code Quality** | Tests passing, linting clean, reviewed | | **Build**

What's inside
Steps it walks through
  1. ⚠️ How to Use This Skill
  2. 1. Platform Selection
  3. Decision Tree
  4. Each Platform Has Different Procedures
  5. 2. Pre-Deployment Principles
  6. The 4 Verification Categories
  7. Pre-Deployment Checklist
  8. 3. Deployment Workflow Principles
  9. The 5-Phase Process
  10. Phase Principles
  11. 4. Post-Deployment Verification
  12. What to Verify
  13. Verification Window
  14. 5. Rollback Principles
More from agentic-awesome-skills
All skills →
About this skill
What does the deployment-procedures skill do?

Production deployment principles and decision-making. Safe deployment workflows, rollback strategies, and verification. Teaches thinking, not scripts.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill deployment-procedures --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going