deployment-procedures
信頼性と安全性を備えた本番リリースの展開
適切な方法論がない本番デプロイは危険です。このスキルは、安全なデプロイのための意思決定フレームワーク、ロールバック戦略、ダウンタイムを最小化する検証ワークフローを教えます。
Télécharger le ZIP du skill
Importer dans Claude
Allez dans Paramètres → Capacités → Skills → Importer un skill
Activez et commencez à utiliser
Tester
Utilisation de "deployment-procedures". Pre-deployment checklist for static site on Vercel
Résultat attendu:
- Pre-Deployment Checklist (Vercel - Static Site):
- 1. Code Quality: Tests passing, linting clean, PR approved
- 2. Build: Run local build, verify no errors or warnings
- 3. Environment: Confirm Vercel env vars match requirements
- 4. Safety: Note current deployment commit for rollback reference
- 5. Notification: Alert team of deployment window
- Deployment: Push to main branch triggers auto-deploy
- Verification: Check deployment logs, test live URL, verify critical flows
Utilisation de "deployment-procedures". Rollback strategy for failed Rails deployment on Render
Résultat attendu:
- Rollback Procedure (Render - Rails App):
- Immediate Action: Navigate to Render dashboard > Service > Deployments
- Select previous successful deployment from list
- Click 'Deploy' to rollback to that commit
- Monitor logs for successful startup (typically 2-5 minutes)
- Verify health endpoint responds correctly
- Test critical user flows (login, core features)
- Notify team: Rollback completed, incident investigation scheduled
- Post-incident: Schedule post-mortem after service stability confirmed
Audit de sécurité
SûrAll static analysis findings are false positives. The backtick patterns at SKILL.md:30,45,87 are markdown code block delimiters for documentation diagrams, not shell execution. The cryptographic algorithm warning at SKILL.md:3,246 has no basis - these lines contain YAML frontmatter and plain text. This is educational documentation with no executable code, network calls, or filesystem operations.
Score de qualité
Ce que vous pouvez construire
開発チームリード
標準化されたチェックリストと検証手順で、複数プロジェクト・複数メンバーに一貫したデプロイ手順を確立します。
ソロ開発者
エンタープライズ向けのツールがなくても、本番デプロイのベストプラクティスを学び、個人または小規模ビジネス向けに適切なワークフローを活用します。
DevOpsエンジニア
デプロイ手順書を文書化・共有し、ジュニアエンジニアにデプロイの意思決定を教育し、ロールバック手順を確立します。
Essayez ces prompts
Review my deployment plan for a Node.js API on Railway. I have tests passing, code reviewed, and production build ready. Walk me through the remaining pre-deployment checks and help me prepare a rollback plan.
I have a React frontend with a Python FastAPI backend. Help me choose the right deployment platform considering: low cost, easy rollback, and minimal DevOps overhead. Compare at least 3 options with their deployment procedures.
Plan a zero-downtime deployment for our e-commerce site on Kubernetes. We need to deploy a database migration that adds a non-nullable column. Outline the strategy, verification steps, and rollback triggers.
Our production deployment just failed - the service is returning 502 errors. We deployed to VPS using PM2. Guide me through the immediate steps to assess the situation and execute a rollback if needed.
Bonnes pratiques
- 複数の修正を含む大規模リリースより、小さな変更を頻繁にデプロイする
- 本番デプロイを開始する前に、必ずテスト済みのロールバック計画を用意する
- デプロイ完了と判断する前に、少なくとも15分間は積極的に監視する
Éviter
- オンコール体制が整っていない状態で、金曜日や祝日前にデプロイする
- 緊急リリースのためにステージング環境でのテストを省略する
- デプロイコマンドが完了した直後に検証せず離席する