Deployment Planning

Deployment Planning is a skill for Claude Code, Codex from Xiaowen-Jiang/agent-enterprise. It costs 15 tokens per session (465 once invoked), scanned A, original, MIT.

A deployment runbook for releasing software with preparation checks, rollout choices, health checks, monitoring, communication, and rollback steps. A rollback is the procedure for returning to an earlier working version after a failed release.

In plain words
What is it for?
Planning rolling, blue-green, canary, or all-at-once releases; verifying tests, migrations, and environment variables; monitoring key signals; and documenting how to undo a release.
Why use it?
It makes release risks and recovery steps explicit before new code reaches users. It also provides checks for confirming that the deployment is healthy afterward.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Planning rolling, blue-green, canary, or all-at-once releases; verifying tests, migrations, and environment variables; monitoring key signals; and documenting how to undo a release.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xiaowen-jiang/agent-enterprise/deployment_planning
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Xiaowen-Jiang/agent-enterprise --skill deployment_planning
Clone the repo
git clone --depth 1 https://github.com/Xiaowen-Jiang/agent-enterprise

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Deployment Planning

README.md
[![agentmods](https://agentmods.dev/badge/skills/xiaowen-jiang/agent-enterprise/deployment_planning.svg)](https://agentmods.dev/skills/xiaowen-jiang/agent-enterprise/deployment_planning)
Your own site
<a href="https://agentmods.dev/skills/xiaowen-jiang/agent-enterprise/deployment_planning"><img src="https://agentmods.dev/badge/skills/xiaowen-jiang/agent-enterprise/deployment_planning.svg" alt="Measured on agentmods" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 465 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00015 $0.00465
Opus 5 $0.00008 $0.00233
Sonnet 5 $0.00003 $0.00093
Haiku 4.5 $0.00002 $0.00047

Measured 8d ago against content hash d0432a760381, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

Deployment Planning scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agent_enterprise/skills_data/deployment_planning/SKILL.md · 64 lines

What it actually says

Process

  1. Pre-deployment checklist:
    • All tests passing
    • Code reviewed and approved
    • Database migrations tested
    • Environment variables configured
    • Dependencies up to date
  2. Deployment strategy — Choose approach:
    • Rolling update: Gradual replacement, zero-downtime
    • Blue-green: Switch traffic between two environments
    • Canary: Route small percentage of traffic to new version
    • Big bang: Replace all at once (simplest, riskiest)
  3. Rollback plan — How to revert if something goes wrong
  4. Health checks — What endpoints/metrics confirm the deployment is healthy
  5. Monitoring — What to watch during and after deployment
  6. Communication — Who needs to know, when to notify

Output Format

## Deployment Runbook: [Release Name/Version]

### Pre-Deployment
- [ ] Tests passing on CI
- [ ] Database migration tested on staging
- [ ] Environment variables verified
- [ ] Rollback procedure documented

### Deployment Steps
1. [Step-by-step deployment procedure]

### Health Verification
- [ ] Health endpoint returns 200: GET /health
- [ ] Key metric within normal range: [metric name]
- [ ] No error spike in logs (check for 5 minutes)

### Rollback Procedure
1. [Step-by-step rollback if deployment fails]

### Post-Deployment
- [ ] Monitor error rates for 30 minutes
- [ ] Verify key user flows
- [ ] Update status page / notify team

Guidelines

  • Always have a rollback plan before deploying
  • Test migrations on a copy of production data first
  • Deploy during low-traffic periods when possible
  • Monitor error rates closely for 30 minutes after deployment
  • Keep deployments small — smaller changes are easier to debug
  • Document everything — the next person to deploy should be able to follow your runbook
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 64 lines · 15 tokens per session scan A d0432a760381

Subscribe to this mod's changes

Deployment Planning is a skill published in the GitHub repository Xiaowen-Jiang/agent-enterprise (52 stars, last pushed 5mo ago), licensed MIT. It adds 15 tokens to every session and 465 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

monitoring-and-alerting

Design and run a monitoring system for a website or web app. Use this skill when setting up uptime checks, defining SLOs, configuring error tracking, choosing what to alert on, designing on-call rotations, or fixing alert fatigue. Triggers on monitoring, alerts, uptime, SLO, SLA, error rate, on-call, pager, alert…

rampstackco/claude-skills · 99 tokens

launch-runbook

Plan and execute a launch runbook covering pre-launch verification, go-live procedures, DNS cutover, post-launch monitoring, and rollback procedures. Use this skill whenever the user is preparing to launch a website or product, planning a DNS cutover, building a go-live checklist, or executing a launch day. Triggers…

rampstackco/claude-skills · 127 tokens

azure-integrations

Azure deployment for web apps — Static Web Apps, App Service, Blob Storage, Bicep/ARM, GitHub Actions CI/CD. Use when deploying Next.js/Vite to Azure or configuring Azure resources for full-stack apps.

PracticalSwan/agent-skills · 50 tokens

microsoft-development

Microsoft docs lookup, code samples, and SDK reference for Azure, .NET, Microsoft 365, Windows, and Power Platform via Microsoft Learn MCP. Use for API reference or official MS documentation retrieval.

PracticalSwan/agent-skills · 44 tokens

kubernetes

Kubernetes operations playbook for deploying services: core objects, probes, resource sizing, safe rollouts, and fast kubectl debugging.

bobmatnyc/claude-mpm-skills · 29 tokens

cloud-design-patterns

Choose and compare cloud design patterns for distributed systems. Use when reviewing architecture, selecting workload patterns, or mapping reliability, performance, messaging, security, and migration concerns to concrete design options.

PracticalSwan/agent-skills · 42 tokens