clear_subtasks
Remove subtasks from specific or all tasks in a project, using task IDs, tags, or a tasks file, to streamline task management in AI-driven development workflows.
Instructions
Clear subtasks from specified tasks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
all | No | Clear subtasks from all tasks | |
file | No | Absolute path to the tasks file (default: tasks/tasks.json) | |
id | No | Task IDs (comma-separated) to clear subtasks from | |
projectRoot | Yes | The directory of the project. Must be an absolute path. | |
tag | No | Tag context to operate on |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"all": {
"description": "Clear subtasks from all tasks",
"type": "boolean"
},
"file": {
"description": "Absolute path to the tasks file (default: tasks/tasks.json)",
"type": "string"
},
"id": {
"description": "Task IDs (comma-separated) to clear subtasks from",
"type": "string"
},
"projectRoot": {
"description": "The directory of the project. Must be an absolute path.",
"type": "string"
},
"tag": {
"description": "Tag context to operate on",
"type": "string"
}
},
"required": [
"projectRoot"
],
"type": "object"
}