taskUpdate
Modify existing task details, including title, description, tags, due date, priority, and status, to keep project information up-to-date and organized.
Instructions
更新現有任務信息
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| updates | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"updates": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"dueDate": {
"type": "string"
},
"priority": {
"type": "number"
},
"status": {
"enum": [
"pending",
"in_progress",
"completed",
"cancelled"
],
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"id",
"updates"
],
"type": "object"
}