← ClaudeAtlas

ccc-deploy-checklisted

"Pre-deployment readiness gate. Use when: 'deploy check', 'ready to ship?', 'pre-deploy', 'deployment gate', 'should I deploy?', 'is it safe to ship?', 'checklist…
KevinZai/commander · ★ 3 · AI & Automation · score 79
Install: claude install-skill KevinZai/commander
# /ccc-deploy-check > Placeholders like ~~CI/CD and ~~monitoring refer to connected tools. See [CONNECTORS.md](../../CONNECTORS.md). Run a pre-deployment readiness check before shipping. Quick Mode runs the essential checklist in under 60 seconds. Power Mode performs a full assessment with rollback plan. ## Quick Mode (default) Run this checklist automatically — no questions needed: ``` [ ] Tests pass → npm test / vitest / pytest (auto-detect) [ ] Build is clean → npm run build / tsc --noEmit [ ] No console.log → grep -r "console\.log" src/ --include="*.ts" [ ] No hardcoded secrets → scan for API keys, tokens, passwords in diff [ ] No TODO/FIXME in → grep -r "TODO\|FIXME" src/ (warn, don't block) changed files [ ] package.json lock → check for lockfile changes that don't match package.json [ ] Migrations are safe → check for destructive SQL (DROP, DELETE without WHERE) ``` Report each check as PASS / WARN / FAIL. **Verdict:** - All PASS → **GO** — ship it - Any WARN → **CAUTION** — review warnings before shipping - Any FAIL → **NO-GO** — fix before deploying ## Power Mode Activate by passing `--power` or `detailed` or `production`. Full deploy readiness assessment: ### Pre-Deploy Checks 1. All Quick Mode checks (above) 2. Diff size — flag if >500 lines changed (increased risk) 3. New dependencies — security scan via `npm audit` or `pip audit` 4. Environment variable diff — any new required env vars documented? 5. Feature flags — is the c