// Platform-specific deployment scripts and configurations. Use when deploying applications, configuring cloud platforms, validating deployment environments, setting up CI/CD pipelines, or when user mentions Vercel, Netlify, AWS, Docker, deployment config, build scripts, or environment validation.
| name | deployment-scripts |
| description | Platform-specific deployment scripts and configurations. Use when deploying applications, configuring cloud platforms, validating deployment environments, setting up CI/CD pipelines, or when user mentions Vercel, Netlify, AWS, Docker, deployment config, build scripts, or environment validation. |
| allowed-tools | Bash, Read, Write, Edit |
This skill provides reusable deployment utilities, platform configurations, and automation scripts for deploying applications to various cloud platforms.
# Check authentication status for target platform
bash scripts/check-auth.sh vercel
# Validate all required environment variables
bash scripts/validate-env.sh .env.production
# Read template and customize for your project
Read: templates/vercel.json
# Modify configuration as needed
Write: vercel.json
# Deploy using platform-specific script
bash scripts/vercel-deploy.sh production
# Or use universal deployment helper
bash scripts/deploy-helper.sh --platform vercel --env production
# Run health checks after deployment
bash scripts/health-check.sh https://your-app.vercel.app
Commands should use these scripts via Bash tool:
# In a deployment command
Bash: bash ~/.claude/plugins/marketplaces/dev-lifecycle-marketplace/plugins/deployment/skills/deployment-scripts/scripts/check-auth.sh vercel
Bash: bash ~/.claude/plugins/marketplaces/dev-lifecycle-marketplace/plugins/deployment/skills/deployment-scripts/scripts/validate-env.sh .env.production
Bash: bash ~/.claude/plugins/marketplaces/dev-lifecycle-marketplace/plugins/deployment/skills/deployment-scripts/scripts/vercel-deploy.sh production
.env.production, .env.staging for each environmentchmod +x scripts/*.sh)