(event: AgentEvent)
| 508 | |
| 509 | // Regular message → stream events via WebSocket |
| 510 | const onEvent = (event: AgentEvent) => { |
| 511 | sendWsEvent(ws, event); |
| 512 | this.ipcBroadcaster?.broadcastAgentEvent(channelId, event); |
| 513 | }; |
| 514 | |
| 515 | const result = await agent.handleMessage("web", channelId, text, onEvent); |
| 516 |
nothing calls this directly
no test coverage detected