ワンクリックで
prd-to-issues
Use this skill when converting a PRD into a list of issues.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use this skill when converting a PRD into a list of issues.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | prd-to-issues |
| description | Use this skill when converting a PRD into a list of issues. |
Break a PRD into independently-grabbable issues using vertical slices (tracer bullets).
Ask the user for the PRD. Use laborer_list_prds to show available PRDs, then use laborer_read_prd (by id or title) to read and internalize the full PRD content.
Read the key modules and integration layers referenced in the PRD. Identify:
Break the PRD into tracer bullet issues. Each issue is a thin vertical slice that cuts through ALL integration layers end-to-end, NOT a horizontal slice of one layer.
- Each slice delivers a narrow but COMPLETE path through every layer (schema, API, UI, tests) - A completed slice is demoable or verifiable on its own - Prefer many thin slices over few thick ones - The first slice should be the simplest possible end-to-end path (the "hello world" tracer bullet) - Later slices add breadth: edge cases, additional user stories, polishPresent the proposed breakdown as a numbered list. For each slice, show:
Ask the user:
Iterate until the user approves the breakdown.
For each approved slice, use the laborer_create_issue MCP tool to create an issue. Pass the PRD's id as prdId, a short descriptive title, and the issue body using the template below.
Create issues in dependency order (blockers first) so you can reference real issue titles in the "Blocked by" field.
You can use laborer_read_issues to review all issues for a PRD, laborer_list_remaining_issues to see pending/in-progress issues, and laborer_update_issue to modify an issue's body or status.
A concise description of this vertical slice. Describe the end-to-end behavior, not layer-by-layer implementation. Reference specific sections of the parent PRD rather than duplicating content.
Or "None - can start immediately" if no blockers.
Reference by number from the parent PRD:
After creating all issues, print a summary table:
| # | Title | Blocked by | Status |
|---|-------|-----------|--------|
| 1 | Basic widget creation | None | Ready |
| 2 | Widget listing | Basic widget creation | Blocked |
Do NOT close or modify the parent PRD.