# Rai Bugfix

> Python-specific verification commands for bugfix workflow.

- Skill: `stefancgillberg/rai-bugfix` (Agent Skill)
- Install (CLI): `npx skillmds@latest add stefancgillberg/rai-bugfix`
- Raw SKILL.md: https://api.skillmd.com/api/skills/stefancgillberg/rai-bugfix/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

---


# Overlay: Fix Verification (Python)

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

## Verification Commands

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

```bash
# Tests
uv run pytest --tb=short -x

# Lint
uv run ruff check

# Type check
uv run pyright
```

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

