Claude-code-agents pre-deploy
Validate build, environment, and dependencies before deployment
install
source · Clone the upstream repo
git clone https://github.com/undeadlist/claude-code-agents
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/undeadlist/claude-code-agents "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/pre-deploy" ~/.claude/skills/undeadlist-claude-code-agents-pre-deploy && rm -rf "$T"
manifest:
skills/pre-deploy/SKILL.mdsource content
Pre-Deploy Workflow
Run before any deployment to production. All checks must pass.
Execution (Parallel)
Spawn all three agents in parallel:
| Agent | Focus |
|---|---|
| Build validation, bundle size, production config |
| Environment variables, secrets detection, config completeness |
| 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
# 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