add-metadata
Add custom metadata (key-value pairs) to specific tasks in Todo.txt files using task ID, enabling enhanced task management and categorization.
Instructions
Add custom metadata (key-value pairs) to a task by ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
metadata | Yes | ||
taskId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"metadata": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"taskId": {
"type": "number"
}
},
"required": [
"taskId",
"metadata"
],
"type": "object"
}