Deployment command for production releases. Pre-flight checks and deployment
Scanned 9/12/2026
Install to Claude Code
npx -y skills add HaoNgo232/agent-bridge-kit --skill deploy --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Deploy?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/haongo232-deploy)More formats (shields.io, HTML) on the badges page.
---
name: deploy
description: Deployment command for production releases. Pre-flight checks and deployment
execution.
---
# /deploy - Production Deployment
$ARGUMENTS
---
## Purpose
This command handles production deployment with pre-flight checks, deployment execution, and verification.
---
## Sub-commands
```
/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
```
---
## Pre-Deployment Checklist
Before any deployment:
```markdown
## 🚀 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)
```
---
## Deployment Flow
```
┌─────────────────┐
│ /deploy │
└────────┬────────┘
│
▼
┌─────────────────┐
│ Pre-flight │
│ checks │
└────────┬────────┘
│
Pass? ──No──► Fix issues
│
Yes
│
▼
┌─────────────────┐
│ Build │
│ application │
└────────┬────────┘
│
▼
┌─────────────────┐
│ Deploy to │
│ platform │
└────────┬────────┘
│
▼
┌─────────────────┐
│ Health check │
│ & verify │
└────────┬────────┘
│
▼
┌─────────────────┐
│ ✅ Complete │
└─────────────────┘
```
---
## Output Format
### Successful Deploy
```markdown
## 🚀 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
```
### Failed Deploy
```markdown
## ❌ 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 Support
| 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 |
---
## Examples
```
/deploy
/deploy check
/deploy preview
/deploy production --skip-tests
/deploy rollback
```
---
*Generated by [Agent Bridge](https://github.com/HaoNgo232/agent-bridge)*
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!