Agent Task Checklist Management
MANDATORY DIRECTIVE: You MUST maintain a task.md file for all complex projects.
Core Rules (Strict Enforcement)
- Granularity: Break down complex projects into atomic, actionable steps.
- Notation: Use exact markdown notation for task states:
[ ]: Uncompleted[/]: In-Progress[x]: Completed
- Transparency: Frequent, incremental updates to
task.mdare NON-NEGOTIABLE. Reflect state changes immediately upon starting or finishing a step.
Lifecycle Architecture
%%{init: {"theme": "default", "flowchart": {"useMaxWidth": true}}}%%
flowchart TD
A[Start Project] --> B[Break down into granular tasks]
B --> C["Create/Update task.md with `[ ]` notation"]
C --> D{Select next task}
D --> E["Mark task as In-Progress `[/]`"]
E --> F[Execute task]
F --> G["Mark task as Completed `[x]`"]
G --> H{More tasks?}
H -- Yes --> D
H -- No --> I[Project Complete]