create_or_update_todo
Create or update the project TODO list by adding tasks, marking items complete, or updating status. Automatically organizes tasks into sections like In Progress, Next Up, Blocked, and Completed.
Instructions
Creates or updates the TODO.md file in .project/ directory. Use this when adding tasks, marking items complete, or updating task status. Intelligently organizes tasks into sections (In Progress, Next Up, Blocked, Completed).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | The task or todo item to add. Can be a single task or multiple tasks. Use markdown checkbox format: "- [ ] Task description". | |
| section | No | Optional: The section to add to: "in_progress", "next_up", "blocked", "completed". If not provided, defaults to "next_up". | |
| markComplete | No | Optional: Task description to mark as complete. Will move from current section to "Completed" section. | |
| replace | No | If true, replaces the entire file. If false (default), merges with existing content. |