create_todo
Create a new actionable task with completion tracking, optionally set a due date and tags, and receive the todo's unique ID and open status.
Instructions
Create a new todo (actionable task) in the konbu planner. Returns the created todo with its assigned UUID and status="open". Use this for tasks that need completion tracking; use create_memo for free-form notes, and create_event for items with a specific start time. Example: {"title":"Buy groceries","due_date":"2026-06-01","tags":["shopping"]} → {"id":"...","title":"Buy groceries","status":"open",...}. Side effects: writes a new record on each call — calling twice creates two todos. Not idempotent.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Longer description or notes for the task (optional). | |
| due_date | No | Due date in YYYY-MM-DD format, e.g. "2026-06-15". Optional. | |
| tags | No | Tag names to attach (optional). Tags are created on-the-fly if missing. | |
| title | Yes | Todo title — short imperative phrase, e.g. "Buy groceries". Required. |