원클릭으로
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