get_tasks_by_realm
Filter and retrieve tasks in the addTaskManager app based on specific realms: Assess, Decide, or Do. Streamline task management by organizing work according to the ADD framework.
Instructions
Filter tasks by realm.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
realm | Yes | Realm to query (maps to realmId 1, 2, or 3) |
Input Schema (JSON Schema)
{
"properties": {
"realm": {
"description": "Realm to query (maps to realmId 1, 2, or 3)",
"enum": [
"assess",
"decide",
"do"
],
"type": "string"
}
},
"required": [
"realm"
],
"type": "object"
}