
Claude Todo Emulator
Adds persistent todo list functionality to AI coding assistants, replicating Claude Code's task management system with workspace-local storage.
25497 views5Local (stdio)
What it does
- Read current task lists
- Update entire task lists
- Track multi-step coding tasks across sessions
- Enforce single in-progress task focus
- Break down large features into manageable pieces
Best for
Developers using Cursor, Windsurf, or other IDEsManaging complex multi-step coding projectsTracking progress when switching between projects
No installation required - uses uvxZero setup configurationWorkspace-local storage
Tools (2)
TodoRead
Read the current task list. Returns a list of todos with their current state.
TodoWrite
Update the entire task list (complete replacement). Parameters: todos: List of todo items, each containing: - id: Unique identifier for the task - content: Task description - status: Current status (pending, in_progress, completed) - priority: Task priority (high, medium, low) - metadata: Optional additional data Returns success status and count of todos written.