Run a quick health check on the codebase.
Steps
- Run TypeScript type check
- Run ESLint
- Run smoke tests
- Report results
Commands
# Type check
npx tsc --noEmit
# Lint
npm run lint
# Quick tests
npm test -- __tests__/smoke --run
Output Format
## Health Check
### TypeScript
- Status: ✓ Pass / ✗ Fail
- Errors: X
### ESLint
- Status: ✓ Pass / ✗ Fail
- Warnings: X
- Errors: X
### Smoke Tests
- Status: ✓ Pass / ✗ Fail
- Passed: X
- Failed: X
### Overall: [Healthy/Issues Found]
Quick Fixes
| Issue | Command |
|---|---|
| Lint auto-fix | npm run lint -- --fix |
| Prisma types | npx prisma generate |
| Missing deps | npm install |