prd-to-issues
製品要求仕様書(PRD)を、開発者が個別に担当できるGitHubの課題に、垂直方向に分割して落とし込み、実装チケット作成や作業項目分解を効率化するSkill。
📜 元の英語説明(参考)
Break a PRD into independently-grabbable GitHub issues using tracer-bullet vertical slices. Use when: user wants to convert a PRD to issues, create implementation tickets, or break down a PRD into work items.
🇯🇵 日本人クリエイター向け解説
製品要求仕様書(PRD)を、開発者が個別に担当できるGitHubの課題に、垂直方向に分割して落とし込み、実装チケット作成や作業項目分解を効率化するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o prd-to-issues.zip https://jpskill.com/download/15278.zip && unzip -o prd-to-issues.zip && rm prd-to-issues.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/15278.zip -OutFile "$d\prd-to-issues.zip"; Expand-Archive "$d\prd-to-issues.zip" -DestinationPath $d -Force; ri "$d\prd-to-issues.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
prd-to-issues.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
prd-to-issuesフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
PRD から Issue へ
PRD を、垂直スライス(トレーサー弾)を用いて、個別に着手可能な GitHub issue に分割します。
プロセス
1. PRD を特定する
ユーザーに PRD の GitHub issue 番号(または URL)を尋ねます。
PRD がまだコンテキストウィンドウにない場合は、gh issue view <number>(コメント付き)で取得します。
2. コードベースを調査する(オプション)
まだコードベースを調査していない場合は、コードの現状を理解するために調査します。
3. 垂直スライスを起草する
PRD を トレーサー弾 issue に分割します。各 issue は、1 つのレイヤーの水平スライスではなく、すべての統合レイヤーをエンドツーエンドで貫通する薄い垂直スライスです。
スライスは 'HITL' または 'AFK' になります。HITL スライスは、アーキテクチャの決定やデザインレビューなど、人間のインタラクションを必要とします。AFK スライスは、人間のインタラクションなしで実装およびマージできます。可能な限り、HITL よりも AFK を優先します。
<vertical-slice-rules>
- 各スライスは、すべてのレイヤー(スキーマ、API、UI、テスト)を通過する狭いながらも完全なパスを提供します。
- 完了したスライスは、単独でデモ可能または検証可能です。
- 少ない厚いスライスよりも、多くの薄いスライスを優先します。 </vertical-slice-rules>
4. ユーザーに質問する
提案された分割を番号付きリストとして提示します。各スライスについて、以下を示します。
- タイトル: 短い説明的な名前
- タイプ: HITL / AFK
- ブロックされているもの: 最初に完了する必要がある他のスライス(もしあれば)
- 対象となるユーザーストーリー: これが対応する PRD のユーザーストーリー
ユーザーに尋ねます。
- 粒度は適切ですか?(粗すぎる / 細かすぎる)
- 依存関係は正しいですか?
- スライスをさらにマージまたは分割する必要がありますか?
- 正しいスライスが HITL および AFK としてマークされていますか?
ユーザーが分割を承認するまで繰り返します。
5. GitHub issue を作成する
承認された各スライスについて、gh issue create を使用して GitHub issue を作成します。以下の issue 本文テンプレートを使用します。
依存関係の順序(ブロッカーが最初)で issue を作成し、「Blocked by」フィールドに実際の issue 番号を参照できるようにします。
<issue-template>
親 PRD
<prd-issue-number>
何を構築するか
この垂直スライスの簡潔な説明。レイヤーごとの実装ではなく、エンドツーエンドの動作を説明します。コンテンツを複製するのではなく、親 PRD の特定のセクションを参照します。
受け入れ基準
- [ ] 基準 1
- [ ] 基準 2
- [ ] 基準 3
ブロックされているもの
-
<issue-number> によってブロックされています(もしあれば)
または、ブロッカーがない場合は「None - すぐに開始できます」。
対象となるユーザーストーリー
親 PRD から番号で参照します。
- ユーザーストーリー 3
- ユーザーストーリー 7
</issue-template>
親 PRD issue を閉じたり、変更したりしないでください。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
PRD to Issues
Break a PRD into independently-grabbable GitHub issues using vertical slices (tracer bullets).
Process
1. Locate the PRD
Ask the user for the PRD GitHub issue number (or URL).
If the PRD is not already in your context window, fetch it with gh issue view <number> (with comments).
2. Explore the codebase (optional)
If you have not already explored the codebase, do so to understand the current state of the code.
3. Draft vertical slices
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.
Slices may be 'HITL' or 'AFK'. HITL slices require human interaction, such as an architectural decision or a design review. AFK slices can be implemented and merged without human interaction. Prefer AFK over HITL where possible.
<vertical-slice-rules>
- 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 </vertical-slice-rules>
4. Quiz the user
Present the proposed breakdown as a numbered list. For each slice, show:
- Title: short descriptive name
- Type: HITL / AFK
- Blocked by: which other slices (if any) must complete first
- User stories covered: which user stories from the PRD this addresses
Ask the user:
- Does the granularity feel right? (too coarse / too fine)
- Are the dependency relationships correct?
- Should any slices be merged or split further?
- Are the correct slices marked as HITL and AFK?
Iterate until the user approves the breakdown.
5. Create the GitHub issues
For each approved slice, create a GitHub issue using gh issue create. Use the issue body template below.
Create issues in dependency order (blockers first) so you can reference real issue numbers in the "Blocked by" field.
<issue-template>
Parent PRD
<prd-issue-number>
What to build
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.
Acceptance criteria
- [ ] Criterion 1
- [ ] Criterion 2
- [ ] Criterion 3
Blocked by
- Blocked by #<issue-number> (if any)
Or "None - can start immediately" if no blockers.
User stories addressed
Reference by number from the parent PRD:
- User story 3
- User story 7
</issue-template>
Do NOT close or modify the parent PRD issue.