devops
Installation
SKILL.md
DevOps — Infrastructure & Deployment
Ship reliably. Monitor everything. Fix fast.
Deployment Checklist
Before any deploy:
- All tests pass in CI (not just locally)
- Environment variables set in target environment
- Database migrations tested against production-like data
- Rollback plan documented (even if it's "revert this commit")
- Health check endpoint exists and returns 200
CI/CD Pipeline
push → lint → typecheck → test → build → deploy staging → smoke test → deploy prod