MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / broadcastAgentEvent

Method broadcastAgentEvent

src/runtime/adapters/ipc.ts:143–149  ·  view source on GitHub ↗
(channelId: string, event: AgentEvent)

Source from the content-addressed store, hash-verified

141 }
142
143 broadcastAgentEvent(channelId: string, event: AgentEvent): void {
144 this.sendIpc({
145 type: "agent_event",
146 channelId,
147 event,
148 });
149 }
150
151 private isIpcRequest(message: unknown): message is IpcRequest {
152 if (!message || typeof message !== "object") return false;

Callers 1

handleRequestMethod · 0.95

Calls 1

sendIpcMethod · 0.95

Tested by

no test coverage detected