From 5af41606be6988036e7e70fc4774737a571c954f Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 28 Apr 2026 19:04:50 +0900 Subject: [PATCH] feat(builtin-commands): register hyperplan builtin command Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- src/features/builtin-commands/commands.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/features/builtin-commands/commands.ts b/src/features/builtin-commands/commands.ts index ebc41f661..aa15f8f58 100644 --- a/src/features/builtin-commands/commands.ts +++ b/src/features/builtin-commands/commands.ts @@ -8,6 +8,7 @@ import { REFACTOR_TEMPLATE, REFACTOR_TEAM_MODE_ADDENDUM } from "./templates/refa import { START_WORK_TEMPLATE } from "./templates/start-work" import { HANDOFF_TEMPLATE } from "./templates/handoff" import { REMOVE_AI_SLOPS_TEMPLATE, REMOVE_AI_SLOPS_TEAM_MODE_ADDENDUM } from "./templates/remove-ai-slops" +import { HYPERPLAN_TEMPLATE } from "./templates/hyperplan" interface LoadBuiltinCommandsOptions { useRegisteredAgents?: boolean @@ -134,6 +135,13 @@ $ARGUMENTS `, argumentHint: "[goal]", }, + hyperplan: { + description: "(builtin) Adversarial multi-agent planning via team-mode (5 hostile category members cross-critique, lead synthesizes)", + template: ` +${HYPERPLAN_TEMPLATE} +`, + argumentHint: "[planning-request]", + }, } }