Add slash command that converts Claude Code plan files into beads epics with tasks and dependencies. Features: - Parses plan structure (title, summary, phases) - Creates epic + tasks from phases - Sets up sequential dependencies - Uses Task agent delegation for context efficiency Complements existing bd prime hooks for session start/end.
1.7 KiB
1.7 KiB
Convert Plan to Beads Tasks
description:
Convert a Claude Code plan file into beads epic + tasks for cross-session tracking.
Arguments
$ARGUMENTS (optional - path to plan file, defaults to most recent in ~/.claude/plans/)
Use the Task tool with subagent_type='general-purpose' to convert the plan.
Agent Instructions
The agent should:
-
Find the plan file
- If argument provided, use that path
- Otherwise:
ls -t ~/.claude/plans/*.md | head -1
-
Parse the plan structure
- Title: First
# Plan:or#heading - Description: Content under
## Summary - Tasks: Each
### Phase N:or### N.section - File list: Include in epic description
- Title: First
-
Create the epic
bd create "[Plan Title]" -t epic -p 1 -d "[summary]. Files: N to modify." --json -
Create tasks from phases
- Each phase becomes a task
- Use first paragraph of phase content as description
bd create "[Phase title]" -t task -p 2 -d "[description]" --json -
Add sequential dependencies
- Phases are sequential:
bd dep add <phase2> <phase1>
- Phases are sequential:
-
Link tasks to epic
bd dep add <epic> <task>for each task
-
Return a concise summary (not raw output):
Created from: [filename] Epic: [title] ([epic-id]) ├── [Phase 1] ([id]) - ready ├── [Phase 2] ([id]) - blocked by [prev] └── [Phase 3] ([id]) - blocked by [prev] Total: [N] tasks Run `bd ready` to start.
Notes
- Original plan file is preserved for reference
- Task descriptions use first paragraph only (keeps them scannable)
- Sequential phases get automatic dependencies