# `Codex.Items.TodoList`
[🔗](https://github.com/nshkrdotcom/codex_sdk/blob/v0.18.1/lib/codex/items.ex#L400)

Structured checklist shared by the agent to track outstanding follow-up items.

# `t`

```elixir
@type t() :: %Codex.Items.TodoList{
  id: String.t() | nil,
  items: [todo_item()],
  type: :todo_list
}
```

# `todo_item`

```elixir
@type todo_item() :: %{text: String.t(), completed: boolean()}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
