update_task
Modify the title or description of an uncompleted task in the task manager. Displays a progress table with the updated task details after changes are applied.
Instructions
Update an existing task's title and/or description. Only uncompleted tasks can be updated.
A progress table will be displayed showing the updated task information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | ||
| requestId | Yes | ||
| taskId | Yes | ||
| title | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"type": "string"
},
"requestId": {
"type": "string"
},
"taskId": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"requestId",
"taskId"
],
"type": "object"
}