원클릭으로
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.