From 585ad6d8d51856631b0f8a050ea5b7d5e231b429 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 28 Apr 2026 19:03:02 +0900 Subject: [PATCH] feat(config): add hyperplan to builtin command schema Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- src/config/schema/commands.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/schema/commands.ts b/src/config/schema/commands.ts index 714580729..ea2a11287 100644 --- a/src/config/schema/commands.ts +++ b/src/config/schema/commands.ts @@ -9,6 +9,7 @@ export const BuiltinCommandNameSchema = z.enum([ "start-work", "stop-continuation", "remove-ai-slops", + "hyperplan", ]) export type BuiltinCommandName = z.infer