feat(config): add hyperplan to keyword detector type schema

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-04-28 19:03:05 +09:00
parent 67099096b9
commit a330e8454b

View File

@@ -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<typeof KeywordTypeSchema>
export const KeywordDetectorConfigSchema = z.object({