get_next_task
Retrieve prioritized tasks ready for execution by analyzing dependencies, status, and priority to determine what to work on next in project workflows.
Instructions
Returns the next task(s) that should be worked on. Considers: dependencies (only returns tasks whose dependencies are done), priority (P0 first), status (excludes done/blocked), and optionally filters by owner or project. This is the key tool for agentic execution - call this to know what to do next.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| owner | No | Filter by owner. Only return tasks assigned to this owner. | |
| project | No | Filter by project. Only return tasks from this project. | |
| include_blocked | No | Include blocked tasks in results. Default: false. | |
| limit | No | Maximum number of tasks to return. Default: 5. |