scope_down_task
Simplify complex tasks efficiently with AI by adjusting their scope. Input task IDs, define strength levels, and apply custom prompts for precise task management in AI-driven development workflows.
Instructions
Decrease the complexity of one or more tasks using AI
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file | No | Path to the tasks file (default: tasks/tasks.json) | |
id | Yes | Comma-separated list of task IDs to scope down (e.g., "1,3,5") | |
projectRoot | Yes | The directory of the project. Must be an absolute path. | |
prompt | No | Custom prompt for specific scoping adjustments | |
research | No | Whether to use research capabilities for scoping | |
strength | No | Strength level: light, regular, or heavy (default: regular) | |
tag | No | Tag context to operate on |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"file": {
"description": "Path to the tasks file (default: tasks/tasks.json)",
"type": "string"
},
"id": {
"description": "Comma-separated list of task IDs to scope down (e.g., \"1,3,5\")",
"type": "string"
},
"projectRoot": {
"description": "The directory of the project. Must be an absolute path.",
"type": "string"
},
"prompt": {
"description": "Custom prompt for specific scoping adjustments",
"type": "string"
},
"research": {
"description": "Whether to use research capabilities for scoping",
"type": "boolean"
},
"strength": {
"description": "Strength level: light, regular, or heavy (default: regular)",
"type": "string"
},
"tag": {
"description": "Tag context to operate on",
"type": "string"
}
},
"required": [
"id",
"projectRoot"
],
"type": "object"
}