Skip to content
Developer Preview

SubagentTargetParams

Params for subagent/resume, subagent/reopen, and subagent/readResult: the bare child target.

  • commandId
  • sessionId
  • subagentId
Source

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

{
"description": "Params for `subagent/resume`, `subagent/reopen`, and\n`subagent/readResult`: the bare child target.",
"properties": {
"commandId": {
"description": "Client-minted UUIDv7 command id.",
"type": "string"
},
"sessionId": {
"description": "Target session (UUIDv7 string; preamble).",
"type": "string"
},
"subagentId": {
"description": "Durable child id (the item's `subagentId`; opaque string).",
"type": "string"
}
},
"required": [
"commandId",
"sessionId",
"subagentId"
],
"type": "object"
}