ワンクリックで
deploy
Deployment command for production releases. Pre-flight checks and deployment execution.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Deployment command for production releases. Pre-flight checks and deployment execution.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.
Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.
Pragmatic coding standards - concise, direct, no over-engineering, no unnecessary comments
Design thinking and decision-making for web UI. Use when designing components, layouts, color schemes, typography, or creating aesthetic interfaces. Teaches principles, not fixed values.
Game development orchestrator. Routes to platform-specific skills based on project needs.
Generative Engine Optimization for AI search engines (ChatGPT, Claude, Perplexity).
| name | deploy |
| description | Deployment command for production releases. Pre-flight checks and deployment execution. |
$ARGUMENTS
This command handles production deployment with pre-flight checks, deployment execution, and verification.
/deploy - Interactive deployment wizard
/deploy check - Run pre-deployment checks only
/deploy preview - Deploy to preview/staging
/deploy production - Deploy to production
/deploy rollback - Rollback to previous version
Before any deployment:
## 🚀 Pre-Deploy Checklist
### Code Quality
- [ ] No TypeScript errors (`npx tsc --noEmit`)
- [ ] ESLint passing (`npx eslint .`)
- [ ] All tests passing (`npm test`)
### Security
- [ ] No hardcoded secrets
- [ ] Environment variables documented
- [ ] Dependencies audited (`npm audit`)
### Performance
- [ ] Bundle size acceptable
- [ ] No console.log statements
- [ ] Images optimized
### Documentation
- [ ] README updated
- [ ] CHANGELOG updated
- [ ] API docs current
### Ready to deploy? (y/n)
┌─────────────────┐
│ /deploy │
└────────┬────────┘
│
▼
┌─────────────────┐
│ Pre-flight │
│ checks │
└────────┬────────┘
│
Pass? ──No──► Fix issues
│
Yes
│
▼
┌─────────────────┐
│ Build │
│ application │
└────────┬────────┘
│
▼
┌─────────────────┐
│ Deploy to │
│ platform │
└────────┬────────┘
│
▼
┌─────────────────┐
│ Health check │
│ & verify │
└────────┬────────┘
│
▼
┌─────────────────┐
│ ✅ Complete │
└─────────────────┘
## 🚀 Deployment Complete
### Summary
- **Version:** v1.2.3
- **Environment:** production
- **Duration:** 47 seconds
- **Platform:** Vercel
### URLs
- 🌐 Production: https://app.example.com
- 📊 Dashboard: https://vercel.com/project
### What Changed
- Added user profile feature
- Fixed login bug
- Updated dependencies
### Health Check
✅ API responding (200 OK)
✅ Database connected
✅ All services healthy
## ❌ Deployment Failed
### Error
Build failed at step: TypeScript compilation
### Details
error TS2345: Argument of type 'string' is not assignable...
### Resolution
1. Fix TypeScript error in `src/services/user.ts:45`
2. Run `npm run build` locally to verify
3. Try `/deploy` again
### Rollback Available
Previous version (v1.2.2) is still active.
Run `/deploy rollback` if needed.
| Platform | Command | Notes |
|---|---|---|
| Vercel | vercel --prod | Auto-detected for Next.js |
| Railway | railway up | Needs Railway CLI |
| Fly.io | fly deploy | Needs flyctl |
| Docker | docker compose up -d | For self-hosted |
/deploy
/deploy check
/deploy preview
/deploy production --skip-tests
/deploy rollback
Built with ❤️ from Antigravity Kit & UXUI ProMax MIT © Vudovn