一键导入
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 页面并帮你完成安装。
基于 SOC 职业分类
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
| 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.