remove_dependency
Remove task dependencies to simplify workflows in AI-driven development. Specify task IDs and project paths to eliminate unnecessary dependencies, ensuring cleaner task management in the Task Master system.
Instructions
Remove a dependency from a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dependsOn | Yes | Task ID to remove as a dependency | |
file | No | Absolute path to the tasks file (default: tasks/tasks.json) | |
id | Yes | Task ID to remove dependency 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": {
"dependsOn": {
"description": "Task ID to remove as a dependency",
"type": "string"
},
"file": {
"description": "Absolute path to the tasks file (default: tasks/tasks.json)",
"type": "string"
},
"id": {
"description": "Task ID to remove dependency 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": [
"id",
"dependsOn",
"projectRoot"
],
"type": "object"
}