update-task
Modify task details in Todo.txt files using the specified task ID. Update description, priority, contexts, projects, or custom metadata to keep tasks organized and current.
Instructions
Update a task's fields (description, priority, contexts, projects, metadata) by ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | ||
updates | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"taskId": {
"type": "number"
},
"updates": {
"additionalProperties": false,
"properties": {
"contexts": {
"items": {
"type": "string"
},
"type": "array"
},
"description": {
"type": "string"
},
"extensions": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"priority": {
"type": "string"
},
"projects": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"taskId",
"updates"
],
"type": "object"
}