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.
Limited to specific tools
Additional assets for this skill
This skill is limited to using the following tools:
README.mdexamples/basic-deployment.mdexamples/cicd-integration.mdexamples/docker-deployment.mdexamples/multi-environment.mdexamples/troubleshooting.mdscripts/check-auth.shscripts/deploy-helper.shscripts/health-check.shscripts/netlify-deploy.shscripts/rollback-deployment.shscripts/validate-build.shscripts/validate-env.shscripts/vercel-deploy.shtemplates/Dockerfile.nodetemplates/Dockerfile.pythontemplates/fly.tomltemplates/github-actions-deploy.ymltemplates/gitlab-ci-deploy.ymltemplates/netlify.tomlThis 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)