update_subtask
Modify uncompleted subtasks by updating their title or description. Input 'requestId', 'taskId', 'subtaskId', and optional fields. View progress with updated task details.
Instructions
Update a subtask's title or description. Provide 'requestId', 'taskId', 'subtaskId', and optionally 'title' and/or 'description'.
Only uncompleted subtasks can be updated.
A progress table will be displayed showing the updated task with its subtasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
requestId | Yes | ||
subtaskId | Yes | ||
taskId | Yes | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"type": "string"
},
"requestId": {
"type": "string"
},
"subtaskId": {
"type": "string"
},
"taskId": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"requestId",
"taskId",
"subtaskId"
],
"type": "object"
}