Skill v1.0.1
currentAutomated scan100/1003 files
version: "1.0.1" name: todo description: Create and track task lists for complex multi-step work. Use when planning projects, breaking down work, tracking progress, or when a task has 3+ steps. Triggers on "plan", "todo", "task list", "break down", "step by step", or complex requests requiring multiple actions.
Todo Management
Use manage_todos and list_todos to plan, track, and complete multi-step work.
When to Use
Create todos when:
- Task has 3+ distinct steps
- Work spans multiple files or systems
- User asks for a plan or breakdown
- Complex debugging or investigation
- Multi-phase projects (research -> implement -> test)
Skip todos for: single-step tasks, simple commands, quick lookups.
How It Works
Writing todos
Call manage_todos with the full list of items. Every call replaces the previous list.
Each item has:
content: what needs to be done (be specific and verifiable)status:pending|in_progress|completed|cancelledpriority:high|medium|low
Reading todos
Call list_todos (no arguments) to retrieve the current list with status counts.
Progress tracking
- Mark exactly one item
in_progressat a time. - Mark items
completedimmediately after finishing — don't batch. - When starting a new item, send the full updated list via
manage_todos.
Workflow
At task start
- Analyze the request.
- Call
manage_todoswith all planned steps (status:pending). - Briefly tell the user the plan.
- Mark the first item
in_progressand begin.
During execution
- Work through items in dependency order.
- After finishing an item, call
manage_todoswith the item markedcompletedand the next onein_progress. - If you discover new steps, add them to the list in the same call.
- If an item is blocked, set it to
cancelledwith a note incontentexplaining why.
At task end
- Call
list_todosto verify everything iscompletedorcancelled. - Summarize what was accomplished and note any skipped items.
Patterns
Investigation / Debug
Reproduce -> Investigate -> Fix -> Verify
Items: get repro steps, reproduce locally, check logs, identify root cause, implement fix, add test, verify fix.
Feature Implementation
Design -> Implement -> Test -> Ship
Items: review requirements, design API, create models, implement logic, write tests, manual QA, deploy.
Research
Gather -> Analyze -> Recommend
Items: search existing solutions, review docs, compare approaches, list pros/cons, write summary.
Anti-Patterns
- Vague items ("fix the bug") — be specific ("add null check in
parseConfigfor missinghostfield") - Giant lists with 50+ items — break into phases, complete one phase before planning the next
- Never updating status — call
manage_todosafter every meaningful step - Skipping todos for complex tasks — when in doubt, create the list