update
Modify multiple upcoming tasks (starting from a specified ID) by applying new context or changes described in the prompt. Suitable for batch updates in task management systems.
Instructions
Update multiple upcoming tasks (with ID >= 'from' ID) based on new context or changes provided in the prompt. Use 'update_task' instead for a single specific task or 'update_subtask' for subtasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file | No | Path to the tasks file relative to project root | |
from | Yes | Task ID from which to start updating (inclusive). IMPORTANT: This tool uses 'from', not 'id' | |
projectRoot | No | The directory of the project. (Optional, usually from session) | |
prompt | Yes | Explanation of changes or new context to apply | |
research | No | Use Perplexity AI for research-backed updates | |
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 relative to project root",
"type": "string"
},
"from": {
"description": "Task ID from which to start updating (inclusive). IMPORTANT: This tool uses 'from', not 'id'",
"type": "string"
},
"projectRoot": {
"description": "The directory of the project. (Optional, usually from session)",
"type": "string"
},
"prompt": {
"description": "Explanation of changes or new context to apply",
"type": "string"
},
"research": {
"description": "Use Perplexity AI for research-backed updates",
"type": "boolean"
},
"tag": {
"description": "Tag context to operate on",
"type": "string"
}
},
"required": [
"from",
"prompt"
],
"type": "object"
}