task_list
Retrieve and filter tasks by project or status (open/completed) to manage developer operational workflows and track progress within the AI Ops Hub environment.
Instructions
Список задач
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | No | Фильтр по проекту | |
status | No | Статус (open/completed) |
Input Schema (JSON Schema)
{
"properties": {
"project": {
"description": "Фильтр по проекту",
"type": "string"
},
"status": {
"description": "Статус (open/completed)",
"enum": [
"open",
"completed"
],
"type": "string"
}
},
"type": "object"
}