From deployment
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/deployment:deployment-scriptsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides reusable deployment utilities, platform configurations, and automation scripts for deploying applications to various cloud platforms.
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)npx claudepluginhub vanman2024/dev-lifecycle-marketplace --plugin deploymentGuides reliable deployments in environments without CI/CD platforms using shell scripts, blue-green switching, smoke tests, and rollback.
Sets up deployment workflows for Vercel, Netlify, Railway, Render, and Docker including PR preview environments, CI database migrations with expand-contract pattern, env var validation, health checks, and rollback procedures.
Guides deployment from localhost to production: Vercel/Netlify/Railway/AWS, CI/CD pipelines, Docker containerization, env vars, DNS. Activates on deployment configs/Dockerfiles/Vercel/Netlify files.