pre-deploy
The pre-deploy skill runs three parallel validation agents before production deployment: deploy-checker verifies the build succeeds and bundle size is acceptable, env-validator confirms all required environment variables are set and secrets aren't exposed in code, and dep-auditor scans for vulnerabilities and license compliance issues. Use this skill as a mandatory gate that blocks deployment if any check fails.
git clone --depth 1 https://github.com/undeadlist/claude-code-agents /tmp/pre-deploy && cp -r /tmp/pre-deploy/skills/pre-deploy ~/.claude/skills/pre-deploySKILL.md
# Pre-Deploy Workflow Run before any deployment to production. All checks must pass. ## Execution (Parallel) 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 | ## Gate Check After all agents complete: - **All pass** -> "Ready to deploy" - **Any fail** -> "BLOCKED - Fix first" with specific blockers listed ## Expected Output ```markdown # 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 ```
API endpoint testing. Discovery, validation, auth flows, error handling.
Supervisor agent. Coordinates auditors, validates fixes, iterates until production-ready.
Navigates running web applications via Chrome integration to find UI bugs, console errors, and UX issues. Uses /chrome tools to interact with localhost or deployed apps.
Runtime bug scanner. Finds error handling gaps, race conditions, memory leaks, null refs.
Code quality auditor. Reviews patterns, maintainability, complexity, consistency.
Implements fixes from FIXES.md. Production-quality code following project patterns.
Real-time console monitoring during browser sessions. Watches for errors, warnings, and logs as you test.
Database auditor. Schema design, N+1 queries, indexes, connection pooling.