add_task_comment
Add markdown-formatted comments to specific tasks in Dart project management without altering task descriptions, enhancing task clarity and collaboration.
Instructions
Add a comment to an existing task without modifying the task description. Comments support markdown formatting.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | The 12-character alphanumeric ID of the task | |
text | Yes | The full content of the comment, which can include markdown formatting. |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "The 12-character alphanumeric ID of the task",
"pattern": "^[a-zA-Z0-9]{12}$",
"type": "string"
},
"text": {
"description": "The full content of the comment, which can include markdown formatting.",
"type": "string"
}
},
"required": [
"taskId",
"text"
],
"type": "object"
}