update_task
Modify existing task details including title, description, priority, category, due date, and status to keep task information current and accurate.
Instructions
Update an existing task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | New category | |
| description | No | New description | |
| dueDate | No | New due date (YYYY-MM-DD) | |
| priority | No | New priority | |
| status | No | New status | |
| taskId | Yes | Task ID (use first 8 characters) | |
| title | No | New title |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "New category",
"type": "string"
},
"description": {
"description": "New description",
"type": "string"
},
"dueDate": {
"description": "New due date (YYYY-MM-DD)",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"priority": {
"description": "New priority",
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"status": {
"description": "New status",
"enum": [
"pending",
"in_progress",
"completed"
],
"type": "string"
},
"taskId": {
"description": "Task ID (use first 8 characters)",
"minLength": 8,
"type": "string"
},
"title": {
"description": "New title",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}