create_task
Creates a new task or note in the human's task app. Use to send an action item, reminder, or note from the agent to the human. Returns the created item.
Instructions
WRITE. Creates a new item (task/note) in the store — the agent→human write side of the two-way bus. Use to hand the human a note, action, or reminder. Side effect: a new item appears in their task app immediately. Returns the created item including its new id. To change an existing item instead, use update_task.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Short title / headline for the new item. Required. | |
| content | No | Markdown body of the item. Optional. | |
| projectId | No | Id of the target project (from `list_projects`). Omit to drop into the inbox/default project. | |
| tags | No | Tags/labels to attach, without a leading "#", e.g. ["agent", "review"]. | |
| dueDate | No | Due date as an ISO 8601 string, e.g. "2026-06-15" or "2026-06-15T09:00:00Z". |