Represents a single task in the agent's internal task list.
Tasks use simple sequential IDs (e.g., "t1", "t2") since the full task list
is injected every turn, making collisions unlikely. The agent manages task
ordering by list position.
Example
consttask: AgentTask = { id:"t1", title:"Analyze sales data for Q4", status:"in_progress", notes:"Found 3 anomalies in December revenue figures" };
Represents a single task in the agent's internal task list.
Tasks use simple sequential IDs (e.g., "t1", "t2") since the full task list is injected every turn, making collisions unlikely. The agent manages task ordering by list position.
Example