# AgentTodoEvent

**Kind:** Interface

**Source:** [`atloria-monorepo/apps/api/src/agent/agent.types.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/apps/api/src/agent/agent.types.ts#L114)

## Properties

| Property | Type |
|---|---|
| `items` | `Array<{
    id: string;
    description: string;
    status: 'pending' | 'in_progress' | 'completed' | 'skipped';
    result?: string;
  }>` |
| `stats` | `{
    total: number;
    completed: number;
    pending: number;
    inProgress: number;
    skipped: number;
  }` |
