add_tasks_to_project
Add specific tasks, including titles, descriptions, and recommendations, to an existing project identified by its project ID.
Instructions
Add new tasks to an existing project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | The ID of the project to add tasks to (e.g., proj-1). | |
tasks | Yes | An array of task objects to add. |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "The ID of the project to add tasks to (e.g., proj-1).",
"type": "string"
},
"tasks": {
"description": "An array of task objects to add.",
"items": {
"properties": {
"description": {
"description": "A detailed description of the task.",
"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": [
"title",
"description"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"projectId",
"tasks"
],
"type": "object"
}