# Check

> Quick health check (lint, types, tests)

- Skill: `mgoodman60/check` (Agent Skill)
- Install (CLI): `npx skillmds@latest add mgoodman60/check`
- Raw SKILL.md: https://api.skillmd.com/api/skills/mgoodman60/check/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: mgoodman60 (https://skillmd.com/u/mgoodman60)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/mgoodman60/check

---


Run a quick health check on the codebase.

## Steps

1. Run TypeScript type check
2. Run ESLint
3. Run smoke tests
4. Report results

## Commands

```bash
# Type check
npx tsc --noEmit

# Lint
npm run lint

# Quick tests
npm test -- __tests__/smoke --run
```

## Output Format

```markdown
## 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` |

