| name | td |
| description | Manage tasks and issues with the td CLI. Use for creating, tracking, querying, and handing off work items. Covers task lifecycle, session management, structured handoffs, epics, dependencies, and boards. |
td — Task & Session Management
td is a local-first task management CLI optimized for AI-assisted development workflows. It tracks issues, sessions, structured handoffs, and progress logs.
Session Workflow
Every session follows this pattern:
-
Start — Load context and begin a new session:
td usage --new-session
td status
-
Pick work — Find what to work on:
td next
td ready
td list --mine
-
Start an issue — Set focus and mark in-progress:
td start <issue-id>
-
Log progress — Track decisions, blockers, attempts:
td log "Implemented auth middleware"
td log --blocker "Waiting on API key from team"
td --decision
td --tried
td --result
td --hypothesis