ralph-convert-prd
npx skills add https://github.com/cfircoo/claude-code-toolkit --skill ralph-convert-prd
Agent 安装分布
Skill 文档
<quick_start>
- Read the user’s PRD or feature requirements
- Read SPEC.md if available (for verification environment info)
- Break down into atomic user stories (one context window each)
- Classify each story with
storyType - Generate
verificationCommandswith real runtime checks - Set
blockedBydependencies - Order stories by dependency (schema â backend â UI â dashboard)
- Output valid
tasks/prd.json</quick_start>
<essential_principles> Critical Rule: Each story must be completable in ONE Ralph iteration (one context window).
Stories that are too large cause the LLM to run out of context before completion, resulting in broken code.
Right-sized stories:
- Add a database column
- Create a UI component
- Update server actions
- Implement a filter
Too large (split these):
- Build entire dashboards
- Add authentication systems
- Refactor entire APIs
- Schema/database changes
- Server actions and backend logic
- UI components
- Dashboard/summary views
Never reference something that doesn’t exist yet.
Good criteria:
- “Add status column with values: ‘pending’ | ‘in_progress’ | ‘done'”
- “Filter dropdown includes: All, Active, Completed”
- “Clicking delete shows confirmation dialog”
Bad criteria (too vague):
- “Works correctly”
- “Good UX”
- “Handles edge cases”
UI-focused stories MUST also include: "Verify in browser using Playwright e2e test"
By storyType:
| storyType | Required verification | Example |
|---|---|---|
database |
Run migration + query DB to confirm schema | prisma migrate deploy, SQL query for new column |
backend |
Run tests + curl endpoint with real data | curl -s http://localhost:3000/api/... |
api |
curl endpoint, check status code and response body | curl -s -w '%{http_code}' ... |
frontend |
Playwright e2e test that interacts with real UI | npx playwright test tests/e2e/... |
infra |
Health check, config validation, service startup | curl -s http://localhost:3000/health |
test |
Run the test suite | npm test / pytest |
Static checks (typecheck) are always included as baseline. Runtime validation is additionally required. </essential_principles>
<output_format>
{
"project": "[Project Name]",
"branchName": "ralph/[feature-name-kebab-case]",
"description": "[Feature description]",
"testCommands": {
"unit": "npm test",
"integration": "npm run test:integration",
"e2e": "npx playwright test",
"typecheck": "npm run typecheck"
},
"userStories": [
{
"id": "US-001",
"title": "[Story title]",
"description": "As a [user], I want [feature] so that [benefit]",
"storyType": "database",
"acceptanceCriteria": [
"Specific criterion 1",
"Specific criterion 2",
"Typecheck passes"
],
"verificationCommands": [
{ "command": "npm run typecheck", "expect": "exit_code:0" },
{ "command": "curl -s http://localhost:3000/api/tasks | jq length", "expect": "not_empty" }
],
"status": "pending",
"priority": 1,
"attempts": 0,
"maxAttempts": 3,
"notes": "",
"blockedBy": [],
"docsToUpdate": ["README.md"],
"completedAt": null,
"lastAttemptLog": ""
}
]
}
Field requirements:
id: Sequential US-001, US-002, etc.title: Short, descriptive actiondescription: User story format (As a… I want… so that…)storyType: One of"backend"|"frontend"|"database"|"api"|"infra"|"test"acceptanceCriteria: Array of specific, verifiable criteriaverificationCommands: Array of{command, expect}with real runtime checksstatus: Always"pending"initiallypriority: Execution order (1 = first)attempts: Always0initiallymaxAttempts: Default3(increase for complex stories)notes: Empty string initiallyblockedBy: Array of story IDs that must be"done"firstdocsToUpdate: Array of file paths to documentation that must be updated when story is done (e.g.,"README.md","docs/api.md","CHANGELOG.md")completedAt: AlwaysnullinitiallylastAttemptLog: Empty string initially
Expect matchers for verificationCommands:
exit_code:0â command exits with code 0exit_code:Nâ command exits with specific code Ncontains:STRINGâ stdout contains STRINGnot_emptyâ stdout is non-emptymatches:REGEXâ stdout matches regex pattern </output_format>
<pre_save_checklist> Before outputting the final prd.json, verify:
- Previous runs archived (if applicable)
- Each story completable in one iteration
- Each story has a
storyTypeassigned - Stories ordered by dependency (no forward references)
-
blockedBydependencies are set correctly - All stories include “Typecheck passes” in acceptanceCriteria
- UI stories include Playwright verification
- Every story has
verificationCommandswith at least one runtime check - Acceptance criteria are verifiable, not vague
- No story depends on later stories
-
docsToUpdatelists relevant docs for each story -
statusis"pending",attemptsis0,maxAttemptsis set </pre_save_checklist>
<success_criteria> Conversion is complete when:
- All features from PRD are captured as user stories
- Each story is atomic (one context window)
- Each story has a
storyTypeassigned - Stories are properly ordered by dependency with
blockedByset - All acceptance criteria are specific and verifiable
- Mandatory criteria (“Typecheck passes”) present on all stories
- Every story has
verificationCommandswith real runtime checks - UI stories include Playwright verification
- Valid JSON structure with all required fields
- Pre-save checklist passes </success_criteria>