get_frontier_tasks
Retrieves the next actionable tasks for an agent, filtering for tasks in backlog without blockers that are ready to be claimed.
Instructions
Return tasks the agent can claim next — Pocock's frontier.
Frontier = tasks that are:
marked for_agent=true
in status '待排期' (backlog)
have no unfinished blockers (blocked_by is empty)
not soft-deleted
Ordered by sort_order ASC, then created_at DESC. Use this as your first call when the user says "do the next task" — it tells you exactly what's ready to be worked.
Args: limit: Max tasks to return (default 10).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |