We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b2e049 commit 93b1c91Copy full SHA for 93b1c91
1 file changed
typescript/acp.ts
@@ -73,6 +73,13 @@ export class AgentSideConnection {
73
const validatedParams = schema.cancelNotificationSchema.parse(params);
74
return agent.cancel(validatedParams as schema.CancelNotification);
75
}
76
+ case schema.AGENT_METHODS.session_list_commands: {
77
+ const validatedParams =
78
+ schema.listCommandsRequestSchema.parse(params);
79
+ return agent.listCommands(
80
+ validatedParams as schema.ListCommandsRequest,
81
+ );
82
+ }
83
default:
84
throw RequestError.methodNotFound(method);
85
0 commit comments