Skip to main content
Todo planning enables agents to break complex tasks into manageable steps, track progress, and maintain persistent task lists across sessions.
The user gives a multi-step goal; the agent breaks it into todos, tracks progress, and executes items in order.

Quick Start

1

Agent with Planning

todo_add, todo_list, todo_update resolve by name. Use tools=["todo_add", "todo_list", "todo_update"] in Python/YAML, --tools todo_add,todo_list,todo_update from the CLI, or grab them together with the coding workflow via toolsets=["coding"].
2

Interactive Planning Flow


How It Works

Todo persistence works through JSON storage with automatic workspace integration:

Configuration Options

Todo Management Functions

Priority Levels

Status Values

Category Organization


Common Patterns

Multi-Step Project Planning

Progress Tracking

Category-Based Workflow


Best Practices

Create specific, actionable todo items rather than vague goals. “Write user authentication tests” is better than “test the app”.
Use priority levels to guide task ordering. High-priority items should address critical blockers or dependencies.
Group related todos by category to maintain clear project structure and enable focused work sessions.
Update todo status promptly as work completes. This maintains accurate project visibility and planning momentum.

Self-Improving Skills

How todo planning combines with skill creation

Workspace

Todo storage within workspace boundaries

Toolsets

Get todos + file edits + code search + shell in one line with toolsets=["coding"]