From 869efbe9adb34d4c84896a5bbe43c8b60d7e9bdd Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Thu, 8 Jan 2026 15:16:52 +0900 Subject: [PATCH] fix(sisyphus-orchestrator): register handler in event loop for boulder continuation --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 24179787..79c631af 100644 --- a/src/index.ts +++ b/src/index.ts @@ -406,6 +406,7 @@ const OhMyOpenCodePlugin: Plugin = async (ctx) => { await agentUsageReminder?.event(input); await interactiveBashSession?.event(input); await ralphLoop?.event(input); + await sisyphusOrchestrator?.handler(input); const { event } = input; const props = event.properties as Record | undefined;