task_create
Create new tasks with titles, project assignments, and due dates to organize developer operational workflows and track progress efficiently.
Instructions
Создать новую задачу
Input Schema
Name | Required | Description | Default |
---|---|---|---|
due | No | Срок выполнения (YYYY-MM-DD) | |
project | No | Проект | |
title | Yes | Заголовок задачи |
Input Schema (JSON Schema)
{
"properties": {
"due": {
"description": "Срок выполнения (YYYY-MM-DD)",
"type": "string"
},
"project": {
"description": "Проект",
"type": "string"
},
"title": {
"description": "Заголовок задачи",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}