create_subtasks
Generate and assign multiple subtasks to a parent task using categorized lists, streamlining task organization and management within a structured workflow.
Instructions
Create multiple subtasks for a parent task with categories.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
subtasks | Yes | ||
task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"subtasks": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Subtasks",
"type": "array"
},
"task_id": {
"title": "Task Id",
"type": "string"
}
},
"required": [
"task_id",
"subtasks"
],
"title": "create_subtasksArguments",
"type": "object"
}