create_task
Add a task or note to the human's task app to hand over an action, reminder, or note. The item appears immediately, and the returned response includes its new ID.
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 |
|---|---|---|---|
| tags | No | Tags/labels to attach, without a leading "#", e.g. ["agent", "review"]. | |
| agent | No | Agent identity for the append-only ATS action ledger. | |
| title | Yes | Short title / headline for the new item. Required. | |
| content | No | Markdown body of the item. Optional. | |
| dueDate | No | Due date as an ISO 8601 string, e.g. "2026-06-15" or "2026-06-15T09:00:00Z". | |
| projectId | No | Id of the target project (from `list_projects`). Omit to drop into the inbox/default project. |