# Rai Story Plan

> TypeScript-specific verification commands for task decomposition.

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

---


# Overlay: Task Verification Template (TypeScript)

This overlay replaces the generic "resolve from manifest" guidance
in Step 2 of the base `rai-story-plan` skill with explicit TypeScript commands.

## Per-Task Verification Commands

When defining verification criteria for each task in the plan, use:

```bash
# Tests
npx vitest run

# Lint
npx eslint src/

# Type check
npx tsc --noEmit
```

Include these in every task's verification section. All three must pass before the task is considered complete.

