add_comment
Add a comment to a Linear ticket by specifying the ticket ID and comment text. Use this tool to provide updates, feedback, or additional details on existing tickets.
Instructions
Add a comment to a specific Linear ticket. This tool is useful for providing feedback, status updates, or additional information on existing tickets.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | Yes | The comment text to add to the ticket | |
debug | No | Debug mode to show extra diagnostics | |
ticketId | Yes | The ID of the Linear ticket to comment on |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"comment": {
"description": "The comment text to add to the ticket",
"type": "string"
},
"debug": {
"default": false,
"description": "Debug mode to show extra diagnostics",
"type": "boolean"
},
"ticketId": {
"description": "The ID of the Linear ticket to comment on",
"type": "string"
}
},
"required": [
"ticketId",
"comment"
],
"type": "object"
}