get_next_task
Determine the next task to execute by checking dependency completion, priority level, and current status, with optional filtering by owner or project.
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
| 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. |