Generate high-level tasks and gated sub-tasks from a PRD, with relevant files and testing guidance.
Create a detailed, step-by-step task list from a given PRD to guide implementation.
/tasks/tasks-[prd-file-name].md (e.g., tasks-0001-prd-user-profile-editing.md)/tasks/ with required filename.## Relevant Files
- `path/to/potential/file1.ts` - Brief reason.
- `path/to/file1.test.ts` - Unit tests for `file1.ts`.
- `path/to/another/file.tsx` - Brief reason.
- `path/to/another/file.test.tsx` - Unit tests for `another/file.tsx`.
- `lib/utils/helpers.ts` - Utility functions.
- `lib/utils/helpers.test.ts` - Unit tests for helpers.
### Notes
- Unit tests co-located with code when possible.
- Use project test runner (e.g., Jest) per repo conventions.
## Tasks
- [ ] 1.0 Parent Task Title
- [ ] 1.1 Sub-task description
- [ ] 1.2 Sub-task description
- [ ] 2.0 Parent Task Title
- [ ] 2.1 Sub-task description
- [ ] 3.0 Parent Task Title
reference.md.