From 65e2643757a1f57085db6cc4762aa86861e72cd7 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 28 Apr 2026 19:04:29 +0900 Subject: [PATCH] feat(keyword-detector): add hyperplan to detector types list Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- src/hooks/keyword-detector/detector.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/keyword-detector/detector.ts b/src/hooks/keyword-detector/detector.ts index 85f2740e5..4f593fd8d 100644 --- a/src/hooks/keyword-detector/detector.ts +++ b/src/hooks/keyword-detector/detector.ts @@ -40,7 +40,7 @@ export function detectKeywordsWithType( disabledKeywords?: ReadonlyArray, ): DetectedKeyword[] { const textWithoutCode = removeCodeBlocks(text) - const types: Array = ["ultrawork", "search", "analyze", "team"] + const types: Array = ["ultrawork", "search", "analyze", "team", "hyperplan"] const disabled = new Set(disabledKeywords ?? []) return KEYWORD_DETECTORS.map(({ pattern, message }, index) => ({ matches: pattern.test(textWithoutCode),