You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schema/schema.json
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,10 @@
59
59
{
60
60
"$ref": "#/$defs/WaitForTerminalExitRequest",
61
61
"title": "WaitForTerminalExitRequest"
62
+
},
63
+
{
64
+
"$ref": "#/$defs/KillTerminalRequest",
65
+
"title": "KillTerminalRequest"
62
66
}
63
67
],
64
68
"description": "All possible requests that an agent can send to a client.\n\nThis enum is used internally for routing RPC requests. You typically won't need\nto use this directly - instead, use the methods on the [`Client`] trait.\n\nThis enum encompasses all method calls from agent to client.",
@@ -281,6 +285,10 @@
281
285
{
282
286
"$ref": "#/$defs/WaitForTerminalExitResponse",
283
287
"title": "WaitForTerminalExitResponse"
288
+
},
289
+
{
290
+
"title": "KillTerminalResponse",
291
+
"type": "null"
284
292
}
285
293
],
286
294
"description": "All possible responses that a client can send to an agent.\n\nThis enum is used internally for routing RPC responses. You typically won't need\nto use this directly - the responses are handled automatically by the connection.\n\nThese are responses to the corresponding AgentRequest variants.",
@@ -626,6 +634,19 @@
626
634
"x-method": "initialize",
627
635
"x-side": "agent"
628
636
},
637
+
"KillTerminalRequest": {
638
+
"properties": {
639
+
"sessionId": {
640
+
"$ref": "#/$defs/SessionId"
641
+
},
642
+
"terminalId": {
643
+
"type": "string"
644
+
}
645
+
},
646
+
"required": ["sessionId", "terminalId"],
647
+
"type": "object",
648
+
"x-docs-ignore": true
649
+
},
629
650
"LoadSessionRequest": {
630
651
"description": "Request parameters for loading an existing session.\n\nOnly available if the agent supports the `loadSession` capability.\n\nSee protocol docs: [Loading Sessions](https://agentclientprotocol.com/protocol/session-setup#loading-sessions)",
0 commit comments