get_forecast_tasks
Retrieve tasks from OmniFocus by filtering due or deferred tasks within a specified date range. Customize results by selecting days ahead, hiding completed tasks, or focusing solely on deferred items.
Instructions
Get tasks from OmniFocus forecast perspective (due/deferred tasks in date range)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | Number of days to look ahead for forecast (default: 7) | |
hideCompleted | No | Set to false to show completed tasks in forecast (default: true) | |
includeDeferredOnly | No | Set to true to show only deferred tasks becoming available (default: false) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"days": {
"description": "Number of days to look ahead for forecast (default: 7)",
"maximum": 30,
"minimum": 1,
"type": "number"
},
"hideCompleted": {
"description": "Set to false to show completed tasks in forecast (default: true)",
"type": "boolean"
},
"includeDeferredOnly": {
"description": "Set to true to show only deferred tasks becoming available (default: false)",
"type": "boolean"
}
},
"type": "object"
}