# Rai Story Implement

> Python-specific verification commands for story implementation.

- Skill: `stefancgillberg/rai-story-implement` (Agent Skill)
- Install (CLI): `npx skillmds@latest add stefancgillberg/rai-story-implement`
- Raw SKILL.md: https://api.skillmd.com/api/skills/stefancgillberg/rai-story-implement/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: stefancgillberg (https://skillmd.com/u/stefancgillberg)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/stefancgillberg/rai-story-implement

---


# Overlay: Verify Task (Python)

This overlay replaces the generic manifest-lookup + language-detection table
in Step 3 of the base `rai-story-implement` skill with explicit Python commands.

## Verification Commands

After each RED-GREEN-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. If any fails: fix and re-verify (max 3 attempts before escalating).

