Generate task list from technical plan
/plugin marketplace add adeonir/claude-code-extras/plugin install spec-driven@claude-code-extras(none)# Tasks Command
Transform the technical plan into an organized, trackable task list.
## Process
### Step 1: Load Plan
Get current branch:
Read `.specs/{branch}/plan.md`
If file doesn't exist, inform user to run `/spec-driven:plan` first.
### Step 2: Generate Tasks
Invoke the `task-generator` agent with:
- The technical plan
- Current branch name
The agent will create `.specs/{branch}/tasks.md` with:
- Sequential IDs (T001, T002...)
- Dependency markers [P] and [B:Txxx]
- Categories (Setup, Core, Testing, Polish)
- Checkboxes for tracking
### Step 3: Report
Inform the user:
- Tas...