feature-tasks¶
Breaks down technical design into actionable implementation tasks.
Synopsis¶
Description¶
The feature-tasks command transforms a technical design into actionable tasks with milestones. It analyzes the design document and creates a structured task breakdown with acceptance criteria for each task.
Parameters¶
| Parameter | Position | Required | Default | Description |
|---|---|---|---|---|
FEATURE_ID |
$1 |
Yes | - | Feature identifier |
EXTRA_CONTEXT |
$2 |
No | "" |
Additional context |
Prerequisites¶
design.mdmust exist in.rp1/work/features/<feature-id>/
Output¶
| File | Contents |
|---|---|
tasks.md |
Single task list (for simple features) |
tracker.md |
Feature tracker with milestone links |
tasks/milestone-N.md |
Milestone-specific task lists |
Location: .rp1/work/features/<feature-id>/
Task Structure¶
Each task includes:
- Clear description
- Acceptance criteria
- Effort estimate
- Dependencies
- Reference to design section
Examples¶
Generate Tasks¶
Example output:
✅ Task breakdown complete
Feature: user-auth
Milestones: 3
Total Tasks: 12
Milestone 1: Authentication Core (5 tasks)
Milestone 2: Session Management (4 tasks)
Milestone 3: Integration & Testing (3 tasks)
Output: .rp1/work/features/user-auth/tracker.md
Related Commands¶
feature-design- Previous stepfeature-build- Next step: implementation
See Also¶
- Feature Development Tutorial - Complete workflow