Nurama Developers

link_task

Create a relationship between two tasks (related, blocks, blockedBy, duplicate).

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

Create a relationship between two tasks (related, blocks, blockedBy, duplicate). WRITE OPERATION. Both tasks must be visible to the bot. Use this when the user wants to track dependencies between tasks ("X is blocked by Y", "Z duplicates W").

Input

PropertyTypeRequiredDescription
taskIdstringyesUUID of the source task — the one the relationship lives on.
linkedTaskIdstringyesUUID of the target task being linked.
linkType"related" | "blocks" | "blockedBy" | "duplicate"noRelationship type. Defaults to related if omitted.

JSON Schema

{
  "type": "object",
  "properties": {
    "taskId": {
      "type": "string",
      "description": "UUID of the source task — the one the relationship lives on."
    },
    "linkedTaskId": {
      "type": "string",
      "description": "UUID of the target task being linked."
    },
    "linkType": {
      "type": "string",
      "enum": [
        "related",
        "blocks",
        "blockedBy",
        "duplicate"
      ],
      "description": "Relationship type. Defaults to `related` if omitted."
    }
  },
  "required": [
    "taskId",
    "linkedTaskId"
  ],
  "additionalProperties": false
}

On this page