# TodoItem

**Kind:** Interface

**Source:** [`atloria-monorepo/libs/agent-core/src/context/todo-manager.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/libs/agent-core/src/context/todo-manager.ts#L10)

Todo Manager

Structured task list re-injected after every tool call.
Prevents objective drift after 3-4 steps in the agent loop.

Zero SDK imports — operates on our own interfaces.

## Properties

| Property | Type |
|---|---|
| `id` | `string` |
| `description` | `string` |
| `status` | `'pending' | 'in_progress' | 'completed' | 'skipped'` |
| `result` | `string` |
| `createdAt` | `number` |
| `completedAt` | `number` |
