create_or_update_todo
Manages project tasks by creating or updating a TODO.md file, organizing items into sections like In Progress, Next Up, Blocked, and Completed for structured task tracking.
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
TableJSON 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. |