create_task
Add a new task to a project by specifying its title and description. Include optional tool and rule recommendations to streamline task execution and ensure alignment with guidelines.
Instructions
Create a new task within an existing project. You can optionally include tool and rule recommendations to guide task completion.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | A detailed description of the task. | |
projectId | Yes | The ID of the project to add the task to (e.g., proj-1). | |
ruleRecommendations | No | Recommendations for relevant rules to review when completing the task. | |
title | Yes | The title of the task. | |
toolRecommendations | No | Recommendations for tools to use to complete the task. |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "A detailed description of the task.",
"type": "string"
},
"projectId": {
"description": "The ID of the project to add the task to (e.g., proj-1).",
"type": "string"
},
"ruleRecommendations": {
"description": "Recommendations for relevant rules to review when completing the task.",
"type": "string"
},
"title": {
"description": "The title of the task.",
"type": "string"
},
"toolRecommendations": {
"description": "Recommendations for tools to use to complete the task.",
"type": "string"
}
},
"required": [
"projectId",
"title",
"description"
],
"type": "object"
}