From 4af7d62f780237f72cf7850d5828296c727ad512 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 28 Apr 2026 19:03:05 +0900 Subject: [PATCH] feat(config): add hyperplan to keyword detector type schema Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- src/config/schema/keyword-detector.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/schema/keyword-detector.ts b/src/config/schema/keyword-detector.ts index f47bc54d4..01003828f 100644 --- a/src/config/schema/keyword-detector.ts +++ b/src/config/schema/keyword-detector.ts @@ -1,6 +1,6 @@ import { z } from "zod" -export const KeywordTypeSchema = z.enum(["ultrawork", "search", "analyze", "team"]) +export const KeywordTypeSchema = z.enum(["ultrawork", "search", "analyze", "team", "hyperplan"]) export type KeywordType = z.infer export const KeywordDetectorConfigSchema = z.object({