tasks_transition
Track task progress by appending state transition records for task IDs within mathematical formalization workflows, supporting structured project tracking and task management.
Instructions
Append a state transition record for a task id.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_root | No | ||
state | Yes | ||
task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_root": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Project Root"
},
"state": {
"title": "State",
"type": "string"
},
"task_id": {
"title": "Task Id",
"type": "string"
}
},
"required": [
"task_id",
"state"
],
"title": "tasks_transitionArguments",
"type": "object"
}