| name | check |
| description | Quick health check (lint, types, tests) |
Run a quick health check on the codebase.
Steps
- Run TypeScript type check
- Run ESLint
- Run smoke tests
- Report results
Commands
npx tsc --noEmit
npm run lint
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 |