Skip to content

The Tasks Phase

The Tasks phase takes your plan and generates an executable task list. Run /auro.tasks and the agent produces tasks organized by phase with parallel markers and story tags.

- [ ] [1] [P] [US1] Create Task model in src/models/task.ts
- [ ] [2] [US1] Create tasks API route in src/routes/tasks.ts
- [ ] [3] [P] [US1] Write integration test for POST /api/tasks
  • [ID] — Sequential number for tracking
  • [P] — Can run in parallel with other [P] tasks in the same phase
  • [US#] — Maps to a user story
Input

Plan

Phase 1

Setup

Phase 2

Foundational

Phase 3

P1 Stories

Phase 4

P2 Stories

Phase 5

P3 Stories

Final

Polish

Phases run in order; only `[P]` tasks inside the same phase run concurrently.

Each phase must complete before the next begins. Within a phase, [P] tasks can run simultaneously.

  • MVP-first — Complete only P1 stories, ship, then iterate
  • Incremental — Ship after each story phase
  • Parallel team — Multiple developers work on [P] tasks simultaneously