Skip to content

feature-tasks

Breaks down technical design into actionable implementation tasks.


Synopsis

/feature-tasks <feature-id> [extra-context]
/rp1-dev/feature-tasks <feature-id> [extra-context]

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.md must 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

/feature-tasks user-auth
/rp1-dev/feature-tasks user-auth

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

See Also