| name | deploy-check |
| description | Pre-flight validation checklist before deploying Accelerate Robotics to production |
/deploy-check — Pre-flight before a production deploy
When to use
User is about to deploy and wants to make sure nothing is broken, missing, or misconfigured.
Checklist
Run these in order. Stop at the first failure.
1. Git state
git status
git log origin/main..HEAD
git diff origin/main..HEAD --stat
2. Secrets
3. Tests
npm test
4. Schema
5. Content Security Policy
6. Docs
7. Smoke test (after deploy)
8. Rollback readiness
If any step fails
Stop the deploy. Fix the issue. Start the checklist over from step 1.