feat(hooks): add no-hephaestus-non-gpt hook to enforce GPT-only for Hephaestus

This commit is contained in:
YeonGyu-Kim
2026-02-20 10:49:04 +09:00
parent e81bfa1092
commit e849cfe819
7 changed files with 180 additions and 0 deletions
+1
View File
@@ -83,6 +83,7 @@ export function createChatMessageHandler(args: {
await hooks.claudeCodeHooks?.["chat.message"]?.(input, output)
await hooks.autoSlashCommand?.["chat.message"]?.(input, output)
await hooks.noSisyphusGpt?.["chat.message"]?.(input, output)
await hooks.noHephaestusNonGpt?.["chat.message"]?.(input, output)
if (hooks.startWork && isStartWorkHookOutput(output)) {
await hooks.startWork["chat.message"]?.(input, output)
}