From 6455b851b8b9a3ed73434d7a05192f1026a1cb2b Mon Sep 17 00:00:00 2001 From: MoerAI Date: Mon, 16 Mar 2026 19:18:46 +0900 Subject: [PATCH] fix(config): keep default OpenCode Build agent enabled by default The default_builder_enabled config defaults to false, which removes the default OpenCode Build agent on OMO install. This forces users into the full OMO orchestration for every task, including simple ones where the lightweight Build agent would be more appropriate. Changed the default to true so the Build agent remains available alongside Sisyphus. Users who prefer the previous behavior can set default_builder_enabled: false in their config. Fixes #2545 --- src/plugin-handlers/agent-config-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin-handlers/agent-config-handler.ts b/src/plugin-handlers/agent-config-handler.ts index de316ffb7..15d93d9eb 100644 --- a/src/plugin-handlers/agent-config-handler.ts +++ b/src/plugin-handlers/agent-config-handler.ts @@ -137,7 +137,7 @@ export async function applyAgentConfig(params: { const isSisyphusEnabled = params.pluginConfig.sisyphus_agent?.disabled !== true; const builderEnabled = - params.pluginConfig.sisyphus_agent?.default_builder_enabled ?? false; + params.pluginConfig.sisyphus_agent?.default_builder_enabled ?? true; const plannerEnabled = params.pluginConfig.sisyphus_agent?.planner_enabled ?? true; const replacePlan = params.pluginConfig.sisyphus_agent?.replace_plan ?? true; const shouldDemotePlan = plannerEnabled && replacePlan;