From a7ae31d732874fe54f48d34a6bb361b9aef92690 Mon Sep 17 00:00:00 2001 From: Michael Bleigh Date: Mon, 11 May 2026 11:26:48 -0700 Subject: [PATCH] fix: fix type issues from upstream merge --- packages/core/src/agents/local-subagent-protocol.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/core/src/agents/local-subagent-protocol.ts b/packages/core/src/agents/local-subagent-protocol.ts index 57c6121ea3..1328a072f3 100644 --- a/packages/core/src/agents/local-subagent-protocol.ts +++ b/packages/core/src/agents/local-subagent-protocol.ts @@ -277,6 +277,7 @@ class LocalSubagentProtocol implements AgentProtocol { this._makeEvent('tool_request', { requestId: callId, name, + status: 'executing', args, }), ]; @@ -292,6 +293,7 @@ class LocalSubagentProtocol implements AgentProtocol { this._makeEvent('tool_response', { requestId, name, + status: 'succeeded', content: [{ type: 'text', text: output }], }), ];