list_todos
List all actionable tasks with their status, due dates, and tags, ordered newest first. Use this to review pending work and track completed items.
Instructions
List all todos (actionable tasks with status and optional due date), newest first. Returns id, title, status (open / done), due_date, and tags for each todo. For free-form notes without status use list_memos; for time-bound calendar items use list_events. Example: returns [{"id":"def67890-...","title":"Buy groceries","status":"open","due_date":"2026-06-01","tags":["shopping"]}, ...]. Workflow: typically followed by mark_todo_done(id) when the user reports completion, or get_todo(id) to read the full description. Side effects: read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||