update_task
Update a task by patching its title, content, tags, or due date. Provide project and task IDs to modify the item in your task app and get the updated result.
Instructions
WRITE. Patches an existing item (partial update) — only the fields you provide change; omitted fields are left untouched. Side effect: the item is modified in the human's task app. Requires the item's projectId + taskId (get them from find or list_projects). Returns the updated item. To create a new item instead, use create_task.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Id of the project the item lives in (from `find`/`list_projects`). | |
| taskId | Yes | Id of the item to update (from `find`). | |
| title | No | New title. Omit to leave the title unchanged. | |
| content | No | New markdown body. Omit to leave the body unchanged. Note: replaces the body, does not append. | |
| tags | No | Replacement tag set (without leading "#"). Omit to leave tags unchanged. | |
| dueDate | No | New due date as an ISO 8601 string. Omit to leave the due date unchanged. |