use_tag
Switch task operation contexts by specifying a tag name with Task Master’s tool, enabling focused management of tasks within AI-driven development projects.
Instructions
Switch to a different tag context for task operations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file | No | Path to the tasks file (default: tasks/tasks.json) | |
name | Yes | Name of the tag to switch to | |
projectRoot | Yes | The directory of the project. Must be an absolute path. |
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"
},
"name": {
"description": "Name of the tag to switch to",
"type": "string"
},
"projectRoot": {
"description": "The directory of the project. Must be an absolute path.",
"type": "string"
}
},
"required": [
"name",
"projectRoot"
],
"type": "object"
}