From 30e5760e2fab67e3d1319a66edf44c1ad5ea760d Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 5 Jan 2026 13:51:14 +0900 Subject: [PATCH] feat(hooks): export new hooks in index MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Export new hooks: - createPrometheusMdOnlyHook - createTaskResumeInfoHook - createStartWorkHook - createSisyphusOrchestratorHook 🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode) --- src/hooks/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/hooks/index.ts b/src/hooks/index.ts index 36ea9c4f0..821c190dc 100644 --- a/src/hooks/index.ts +++ b/src/hooks/index.ts @@ -25,3 +25,7 @@ export { createThinkingBlockValidatorHook } from "./thinking-block-validator"; export { createRalphLoopHook, type RalphLoopHook } from "./ralph-loop"; export { createAutoSlashCommandHook } from "./auto-slash-command"; export { createEditErrorRecoveryHook } from "./edit-error-recovery"; +export { createPrometheusMdOnlyHook } from "./prometheus-md-only"; +export { createTaskResumeInfoHook } from "./task-resume-info"; +export { createStartWorkHook } from "./start-work"; +export { createSisyphusOrchestratorHook } from "./sisyphus-orchestrator";