From a500f0c9ad9fcd869c6de05f30e17547d7f7fc91 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 8 Dec 2025 15:00:45 +0900 Subject: [PATCH] export(hooks): add directory-agents-injector hook to public API - Export createDirectoryAgentsInjectorHook from hooks index - Fix: Formatting (add semicolons to match code style) --- src/hooks/index.ts | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/hooks/index.ts b/src/hooks/index.ts index 96078ed..49960d3 100644 --- a/src/hooks/index.ts +++ b/src/hooks/index.ts @@ -1,7 +1,8 @@ -export { createTodoContinuationEnforcer } from "./todo-continuation-enforcer" -export { createContextWindowMonitorHook } from "./context-window-monitor" -export { createSessionNotification } from "./session-notification" -export { createSessionRecoveryHook } from "./session-recovery" -export { createCommentCheckerHooks } from "./comment-checker" -export { createGrepOutputTruncatorHook } from "./grep-output-truncator" -export { createPulseMonitorHook } from "./pulse-monitor" +export { createTodoContinuationEnforcer } from "./todo-continuation-enforcer"; +export { createContextWindowMonitorHook } from "./context-window-monitor"; +export { createSessionNotification } from "./session-notification"; +export { createSessionRecoveryHook } from "./session-recovery"; +export { createCommentCheckerHooks } from "./comment-checker"; +export { createGrepOutputTruncatorHook } from "./grep-output-truncator"; +export { createPulseMonitorHook } from "./pulse-monitor"; +export { createDirectoryAgentsInjectorHook } from "./directory-agents-injector";