ワンクリックで
work-breakdown
Break down implementation plans into schedulable bd (beads) issues with proper epics, tasks, dependencies, and estimates.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Break down implementation plans into schedulable bd (beads) issues with proper epics, tasks, dependencies, and estimates.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | work-breakdown |
| description | Break down implementation plans into schedulable bd (beads) issues with proper epics, tasks, dependencies, and estimates. |
Break down implementation plans into bd-compatible issues. This skill produces epics, tasks, dependencies, and estimates that can be directly executed via bd commands.
If the user references a file, read it first. Extract:
Group work into 3-7 epics. Common patterns:
For each epic, create tasks that are:
Identify blocking relationships:
Use bd-compatible values:
Show the user:
Ask: "Ready to create these issues in beads?"
After user approval, execute commands in this order:
# 1. Create epics first (capture IDs from --json output)
bd create "Epic Name" -t epic -p [priority] -e [total_minutes] -d "Description" --json
# 2. Create tasks as children of epics
bd create "Task Name" -t task -p [priority] -e [minutes] --parent [epic_id] -d "Description" --json
# 3. Add dependencies between tasks
bd dep add [dependent_id] [blocker_id]
# 4. Show ready work
bd ready
Present the WBS as a markdown table:
## Work Breakdown: [Project Name]
### Summary
- Total: N tasks across M epics
- Effort: X-Y hours
- Critical path: Task1 -> Task2 -> Task3
### Epic 1: [Name] (P1, ~Xhr)
| ID | Task | Type | Pri | Est | Depends | Risk |
|----|------|------|-----|-----|---------|------|
| 1.1 | [Title] | task | P2 | 120m | - | Low |
| 1.2 | [Title] | task | P2 | 180m | 1.1 | Med |
### Epic 2: [Name] (P2, ~Xhr)
...
| Field | Flag | Values |
|---|---|---|
| type | -t | epic, task, feature, bug, chore |
| priority | -p | 0-4 (0=critical) |
| estimate | -e | minutes |
| parent | --parent | epic ID |
| description | -d | text |
| labels | -l | comma-separated |
Dependencies: bd dep add [child] [blocker] - child depends on blocker
bd ready at the end to show actionable work