mark_subtask_done
Update task progress by marking a subtask as completed. Input 'requestId', 'taskId', and 'subtaskId' to display an updated status table. Ensures all subtasks are finished before a task is marked complete.
Instructions
Mark a subtask as done. Provide 'requestId', 'taskId', and 'subtaskId'.
A progress table will be displayed showing the updated status of all tasks and subtasks.
All subtasks must be completed before a task can be marked as done.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
requestId | Yes | ||
subtaskId | Yes | ||
taskId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"requestId": {
"type": "string"
},
"subtaskId": {
"type": "string"
},
"taskId": {
"type": "string"
}
},
"required": [
"requestId",
"taskId",
"subtaskId"
],
"type": "object"
}