tasks_pick_next
Selects and transitions the next batch of open tasks to 'in_progress' status within a project, returning the task IDs. Specifies a project root and optional limit. Supports task management for mathematical formalization workflows.
Instructions
Mark next open tasks as in_progress (up to limit). Returns transitioned ids.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
project_root | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 5,
"title": "Limit",
"type": "integer"
},
"project_root": {
"title": "Project Root",
"type": "string"
}
},
"required": [
"project_root"
],
"title": "tasks_pick_nextArguments",
"type": "object"
}