update_tasks
Modify multiple tasks by updating descriptions, statuses, priorities, due dates, or tags in a single operation using structured input. Streamlines task management for enhanced productivity.
Instructions
Update multiple tasks with new values.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
updates | Yes | List of task updates to apply |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"updates": {
"description": "List of task updates to apply",
"items": {
"additionalProperties": false,
"properties": {
"description": {
"description": "New task description",
"minLength": 3,
"type": "string"
},
"due": {
"description": "New due date in ISO format",
"format": "date-time",
"type": "string"
},
"id": {
"description": "UUID of the task to update",
"format": "uuid",
"type": "string"
},
"priority": {
"description": "New priority level",
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"status": {
"description": "New task status",
"enum": [
"todo",
"in-progress",
"blocked",
"done"
],
"type": "string"
},
"tags": {
"description": "New tags for the task",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"id"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"updates"
],
"type": "object"
}