ワンクリックで
deployment-strategy
Deploy with rollback plans, staged rollouts, and feature flags
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Deploy with rollback plans, staged rollouts, and feature flags
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Build UIs that work for all users including keyboard navigation, screen readers, and WCAG 2.2
Design multi-agent systems with robust tool interfaces, state management, and failure handling
Build ML systems with disciplined training, evaluation, deployment, and safety practices
Design APIs that are stable, ergonomic, and evolvable
Design systems at the right scale with explicit trade-off documentation
Design services that are reliable, observable, secure, and maintainable
SOC 職業分類に基づく
| name | deployment-strategy |
| description | Deploy with rollback plans, staged rollouts, and feature flags |
| difficulty | senior |
| domains | ["general"] |
Deployments fail. The question is not whether, but whether you can recover quickly. This skill makes deployments reversible, observable, and gradual.
/ship workflowBefore deploying, document how to roll back. If you can't write the rollback procedure, you're not ready to deploy.
1% → 10% → 50% → 100% for high-risk changes. 10% → 100% for low-risk changes. Never: 0% → 100% for anything that touches user-visible behavior.
Choose based on: how reversible is the change? How quickly can you detect problems?
Before deploying: what metrics must hold for the deployment to be considered successful?
After deploying to a stage: wait before expanding. Minimum bake time:
High-risk changes need longer bake times.
Success criteria from Step 4 must be checked automatically. If they fail, the deployment halts. Not: "someone watches the dashboard." Automatic.
After a deployment: watch the golden signals for 24 hours. Document any anomalies.
"It's a small change — we can deploy to 100%" "Small" changes cause production incidents. All production changes go through staged rollout.
"We can roll back if there's a problem" "Can roll back" means the rollback procedure is written, tested, and can be executed in under 5 minutes. Otherwise, you don't have a rollback plan; you have a hope.