create_task
Create and manage Dart tasks with title, description, priority, tags, size, and assignees. Simplify task organization and collaboration for efficient workflow management.
Instructions
Create a new Dart task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignee_duids | No | List of assignee DUIDs | |
description | Yes | Description of the task | |
priority | No | Priority of the task | |
size | No | Size/complexity of the task (1-5) | |
subscriber_duids | No | List of subscriber DUIDs | |
tags | No | Tags for the task | |
title | Yes | Title of the task |
Input Schema (JSON Schema)
{
"properties": {
"assignee_duids": {
"description": "List of assignee DUIDs",
"items": {
"type": "string"
},
"type": "array"
},
"description": {
"description": "Description of the task",
"type": "string"
},
"priority": {
"description": "Priority of the task",
"enum": [
"Low",
"Medium",
"High",
"Critical"
],
"type": "string"
},
"size": {
"description": "Size/complexity of the task (1-5)",
"maximum": 5,
"minimum": 1,
"type": "number"
},
"subscriber_duids": {
"description": "List of subscriber DUIDs",
"items": {
"type": "string"
},
"type": "array"
},
"tags": {
"description": "Tags for the task",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Title of the task",
"type": "string"
}
},
"required": [
"title",
"description"
],
"type": "object"
}