PeaPod Task-Driven Implementation
Autonomous: Do not ask for confirmation. Execute each task item, run build/test if Rust changed, commit and push, then continue to the next item. Hooks auto-allow shell commands and auto-continue the conversation.
When the user asks to implement work that maps to the task breakdown:
- •
Identify the task file from .tasks/README.md. Follow the recommended order: 00 → 01 → 07 → 02 & 03 → 04, 05, 06 → 08, 09.
- •
Open the relevant .tasks file (e.g. .tasks/01-pea-core.md for core work, .tasks/02-windows.md for Windows).
- •
Implement in dependency order: Complete parent tasks before children where the checklist implies it. Do not skip items that block others.
- •
Update checklists: As you complete each item, change
- [ ]to- [x]in the corresponding .tasks file. Only mark done when the work is implemented and verified (e.g. build/tests pass). - •
Add sub-tasks only when needed: If you discover a necessary step not in the list, add it under the appropriate ## or ### so the hierarchy stays clear.
- •
Evolve .tasks: When new requirements emerge, add tasks to the appropriate file; when findings arise (design decisions, root causes, gotchas), add notes inline or in a
## Notessection at the end of the file. For session behavior (e.g. continuing from the next unchecked item when no specific goal is set), follow the task-continuity rule in.cursor/rules/task-continuity.mdc.