deploy
FeaturedDeploys with pre-flight checks and health verification. Triggers: deploy, deployment, ship, release, push to prod.
AI & Automation 174 stars
21 forks Updated yesterday Apache-2.0
Install
Quality Score: 94/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Deploy Application
$ARGUMENTS
Deploy application to target environment.
## Project context
- Docker config: !`cat docker-compose.yml 2>/dev/null || cat Dockerfile 2>/dev/null || echo "no-docker"`
## Usage
```
/deploy [environment]
```
## What This Command Does
1. **Validates** deployment prerequisites
2. **Runs** pre-deployment checks
3. **Executes** deployment
4. **Verifies** deployment success
## Environments
| Environment | Description |
|-------------|-------------|
| `dev` | Development environment |
| `staging` | Staging/QA environment |
| `prod` | Production environment |
## Pre-Deployment Checklist
Run automated pre-deployment checks:
```bash
python3 ${CLAUDE_SKILL_DIR}/scripts/pre_deploy_check.py [environment]
```
Returns JSON with pass/fail for each check:
- `git_clean` - no uncommitted changes
- `branch` - on main/master for production
- `docker` - services running (if applicable)
- `env_file` - .env or .env.$ENV exists
- `build_artifacts` - dist/build present
- `tests_ran` - test result artifacts found
Manual verification:
- [ ] Tests passing
- [ ] Build successful
- [ ] Environment variables set
- [ ] Secrets configured
- [ ] Database migrations ready
- [ ] Rollback plan documented
## Deployment Strategies
| Strategy | Use Case |
|----------|----------|
| Rolling | Zero-downtime, gradual |
| Blue-Green | Instant switch, easy rollback |
| Canary | Risk mitigation, gradual traffic |
| Recreate | Simple, allows downtime |
## Output Format
```mark...
Details
- Author
- softspark
- Repository
- softspark/ai-toolkit
- Created
- 5 months ago
- Last Updated
- yesterday
- Language
- Python
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
deploy
Helps deploy applications to production environments with safety checks, rollback support, and monitoring.
16 Updated 4 days ago
selftune-dev AI & Automation Listed
deploy
Deployment Checklist & Setup
4 Updated 1 months ago
AreteDriver DevOps & Infrastructure Listed
deploy
Plans and executes a deployment — verifies release readiness, build/tag, migration order, delegates the stack mutation to an installed deployment skill (container platform / Kubernetes / cloud) or produces manual runbook steps, runs post-deploy smoke checks, documents rollback. Every production mutation needs confirmation.
0 Updated yesterday
gonimar