File size: 461 Bytes
4c76b0d | 1 2 3 4 5 6 7 8 9 10 11 12 13 | // Runtime event helpers bridge core agent events into plugin runtime hooks.
import { onAgentEvent } from "../../infra/agent-events.js";
import { onSessionTranscriptUpdate } from "../../sessions/transcript-events.js";
import type { PluginRuntime } from "./types.js";
/** Creates the plugin runtime event subscription facade. */
export function createRuntimeEvents(): PluginRuntime["events"] {
return {
onAgentEvent,
onSessionTranscriptUpdate,
};
}
|