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]", + }, } }