v1

latestSwagger 2.02026-07-175445133.1 KB
claude

Get worktree todos

Returns the most recent TodoWrite structure from Claude Code session for a specific worktree

get/v1/claude/todos

Query parameters

worktree_pathstring required

Worktree path

Response

OK

contentstring

The content/description of the todo

idstring

Unique identifier for the todo item

priority'high' | 'medium' | 'low'

Priority level of the todo

status'pending' | 'in_progress' | 'completed'

Current status of the todo

Example response

[
  {
    "content": "Fix authentication bug",
    "id": "1",
    "priority": "high",
    "status": "in_progress"
  }
]