From claude-code-agents
Validates production build, bundle size, environment variables, secrets, dependencies, vulnerabilities, and licenses before deployment. Outputs checklist and blocks on failures.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-code-agents:pre-deployThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run before any deployment to production. All checks must pass.
Run before any deployment to production. All checks must pass.
Spawn all three agents in parallel:
| Agent | Focus |
|---|---|
deploy-checker | Build validation, bundle size, production config |
env-validator | Environment variables, secrets detection, config completeness |
dep-auditor | Vulnerability scan, outdated packages, license compliance |
After all agents complete:
# Pre-Deploy Checklist
## Status: READY / BLOCKED
### Build Validation (deploy-checker)
- [x] Production build succeeds
- [x] Bundle size acceptable
- [x] No build warnings
### Environment (env-validator)
- [x] All required vars set
- [x] No secrets in code
- [x] Production config valid
### Dependencies (dep-auditor)
- [x] No critical vulnerabilities
- [x] No high vulnerabilities
## Deployment Decision
READY TO DEPLOY / BLOCKED - Fix issues
npx claudepluginhub undeadlist/claude-code-agents --plugin claude-code-agentsGenerates pre-deployment checklists for code quality, security, performance, infrastructure, database migrations, and produces go/no-go readiness report.
Runs production readiness checklist verifying environment variables, health endpoints, error monitoring, CORS, rate limiting, security headers, performance, database, and DNS/SSL config before deployment.
Pre-flight validation and deployment pipeline for Node.js projects. Checks env vars, migrations, bundle size, and rollback plan, then deploys via git push or platform CLI (Vercel, Railway, Fly.io, Cloudflare Workers).