add_tasks_to_request
Extend an existing request with additional tasks by adding subtasks and dependencies. A progress table updates to display all tasks for better workflow management.
Instructions
Add new tasks to an existing request. This allows extending a request with additional tasks.
Tasks can include subtasks and dependencies. A progress table will be displayed showing all tasks including the newly added ones.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
requestId | Yes | ||
tasks | Yes |
Input Schema (JSON Schema)
{
"properties": {
"requestId": {
"type": "string"
},
"tasks": {
"items": {
"properties": {
"dependencies": {
"items": {
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"url": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
},
"description": {
"type": "string"
},
"subtasks": {
"items": {
"properties": {
"description": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"description"
],
"type": "object"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"description"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"requestId",
"tasks"
],
"type": "object"
}