taskStepUpdate
Modify specific steps within tasks by updating step descriptions, completion status, order, or estimated time using predefined schemas.
Instructions
更新任務的特定步驟
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| stepId | Yes | ||
| taskId | Yes | ||
| updates | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"stepId": {
"type": "string"
},
"taskId": {
"type": "string"
},
"updates": {
"additionalProperties": false,
"properties": {
"completed": {
"type": "boolean"
},
"description": {
"type": "string"
},
"estimatedTime": {
"type": "number"
},
"order": {
"type": "number"
}
},
"type": "object"
}
},
"required": [
"taskId",
"stepId",
"updates"
],
"type": "object"
}