# Rai Bugfix

> TypeScript-specific verification commands for bugfix workflow.

- Skill: `stefancgillberg/rai-bugfix-2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add stefancgillberg/rai-bugfix-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/stefancgillberg/rai-bugfix-2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: stefancgillberg (https://skillmd.com/u/stefancgillberg)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/stefancgillberg/rai-bugfix-2

---


# Overlay: Fix Verification (TypeScript)

This overlay replaces the generic manifest-lookup priority chain
in Step 4 of the base `rai-bugfix` skill with explicit TypeScript commands.

## Verification Commands

After each RED (regression test) - GREEN (fix) - REFACTOR cycle, run:

```bash
# Tests
npx vitest run

# Lint
npx eslint src/

# Type check
npx tsc --noEmit
```

All three must pass before committing. The bug must no longer reproduce.

