From ccd4dceaf2aa0ae36fad2279192dadae74a27230 Mon Sep 17 00:00:00 2001 From: acamq <179265037+acamq@users.noreply.github.com> Date: Sun, 8 Mar 2026 09:12:29 -0600 Subject: [PATCH] fix(think-mode): remove overly broad Korean keyword MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove '고민' from MULTILINGUAL_KEYWORDS as it triggers false positives in everyday Korean speech. The keyword '생각' (thinking) remains for intentional think-mode activation. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus --- src/hooks/think-mode/detector.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/think-mode/detector.ts b/src/hooks/think-mode/detector.ts index f67cfc703..9ef7561a9 100644 --- a/src/hooks/think-mode/detector.ts +++ b/src/hooks/think-mode/detector.ts @@ -1,7 +1,7 @@ const ENGLISH_PATTERNS = [/\bultrathink\b/i, /\bthink\b/i] const MULTILINGUAL_KEYWORDS = [ - "생각", "고민", "검토", "제대로", + "생각", "검토", "제대로", "思考", "考虑", "考慮", "思考", "考え", "熟考", "सोच", "विचार",