Skip to content
Developer Preview

TaskBackgroundParams

task/background params: durably send a running foreground tool task to the background.

  • commandId
  • sessionId
  • taskId
Source

schema/msp/experimental/msp.schema.json#/types/TaskBackgroundParams

{
"description": "`task/background` params: durably send a running foreground\ntool task to the background.",
"properties": {
"commandId": {
"description": "The idempotency handle (UUIDv7).",
"type": "string"
},
"sessionId": {
"description": "The target session.",
"type": "string"
},
"taskId": {
"description": "The task to background, exactly as the view names it: the `toolCall`\nitem's `itemId` IS the task id.",
"type": "string"
}
},
"required": [
"commandId",
"sessionId",
"taskId"
],
"type": "object"
}