From b32f2744a04c2f0363b0f85360938c233d530347 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 28 Apr 2026 19:04:03 +0900 Subject: [PATCH] feat(keyword-detector): register hyperplan in keyword detectors array Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- src/hooks/keyword-detector/constants.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/hooks/keyword-detector/constants.ts b/src/hooks/keyword-detector/constants.ts index a52837168..d710edbfe 100644 --- a/src/hooks/keyword-detector/constants.ts +++ b/src/hooks/keyword-detector/constants.ts @@ -5,10 +5,12 @@ export { isPlannerAgent, isNonOmoAgent, getUltraworkMessage } from "./ultrawork" export { SEARCH_PATTERN, SEARCH_MESSAGE } from "./search" export { ANALYZE_PATTERN, ANALYZE_MESSAGE } from "./analyze" export { TEAM_PATTERN, TEAM_MESSAGE } from "./team" +export { HYPERPLAN_PATTERN, HYPERPLAN_MESSAGE } from "./hyperplan" import { getUltraworkMessage } from "./ultrawork" import { SEARCH_PATTERN, SEARCH_MESSAGE } from "./search" import { TEAM_PATTERN, TEAM_MESSAGE } from "./team" +import { HYPERPLAN_PATTERN, HYPERPLAN_MESSAGE } from "./hyperplan" export type KeywordDetector = { pattern: RegExp @@ -47,4 +49,8 @@ Example: delegate_task(subagent_type="explore", prompt="...", run_in_background= pattern: TEAM_PATTERN, message: TEAM_MESSAGE, }, + { + pattern: HYPERPLAN_PATTERN, + message: HYPERPLAN_MESSAGE, + }, ]