expand_all
Break down pending tasks into detailed subtasks automatically, using complexity, defaults, or research-based methods for precise task management in AI-driven development.
Instructions
Expand all pending tasks into subtasks based on complexity or defaults
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file | No | Absolute path to the tasks file in the /tasks folder inside the project root (default: tasks/tasks.json) | |
force | No | Force regeneration of subtasks for tasks that already have them | |
num | No | Target number of subtasks per task (uses complexity/defaults otherwise) | |
projectRoot | No | Absolute path to the project root directory (derived from session if possible) | |
prompt | No | Additional context to guide subtask generation for all tasks | |
research | No | Enable research-backed subtask generation (e.g., using Perplexity) | |
tag | No | Tag context to operate on |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"file": {
"description": "Absolute path to the tasks file in the /tasks folder inside the project root (default: tasks/tasks.json)",
"type": "string"
},
"force": {
"description": "Force regeneration of subtasks for tasks that already have them",
"type": "boolean"
},
"num": {
"description": "Target number of subtasks per task (uses complexity/defaults otherwise)",
"type": "string"
},
"projectRoot": {
"description": "Absolute path to the project root directory (derived from session if possible)",
"type": "string"
},
"prompt": {
"description": "Additional context to guide subtask generation for all tasks",
"type": "string"
},
"research": {
"description": "Enable research-backed subtask generation (e.g., using Perplexity)",
"type": "boolean"
},
"tag": {
"description": "Tag context to operate on",
"type": "string"
}
},
"type": "object"
}