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

Method sendIpc

src/runtime/adapters/ipc.ts:515–519  ·  view source on GitHub ↗
(payload: unknown)

Source from the content-addressed store, hash-verified

513 }
514
515 private sendIpc(payload: unknown): void {
516 if (typeof process.send === "function") {
517 process.send(payload as any);
518 }
519 }
520
521 private reply(id: string, data: unknown): void {
522 this.sendIpc({ id, type: "result", data });

Callers 5

notifyReadyMethod · 0.95
broadcastInboundMethod · 0.95
broadcastAgentEventMethod · 0.95
replyMethod · 0.95
replyErrorMethod · 0.95

Calls 1

sendMethod · 0.45

Tested by

no test coverage detected