search-tasks
Find specific tasks in Todo.txt files by filtering with a search query, ensuring quick and precise task management within your workflow.
Instructions
Search for tasks containing a query string.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}