From 9d89bbb03a8088920514f9d27d029b0820745a9a Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sat, 11 Apr 2026 22:29:08 +0900 Subject: [PATCH] refactor(commands): keep builtin command options internal Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- src/features/builtin-commands/commands.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/builtin-commands/commands.ts b/src/features/builtin-commands/commands.ts index fe581498d..8daa361df 100644 --- a/src/features/builtin-commands/commands.ts +++ b/src/features/builtin-commands/commands.ts @@ -9,7 +9,7 @@ import { START_WORK_TEMPLATE } from "./templates/start-work" import { HANDOFF_TEMPLATE } from "./templates/handoff" import { REMOVE_AI_SLOPS_TEMPLATE } from "./templates/remove-ai-slops" -export interface LoadBuiltinCommandsOptions { +interface LoadBuiltinCommandsOptions { useRegisteredAgents?: boolean }