From 65b00c97209e1c57a388363ca4966b743603db5e Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 5 Jan 2026 09:45:05 +0900 Subject: [PATCH] fix: fix Planner-Sisyphus visibility for OpenCode 1.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change Planner-Sisyphus mode from "all" to "primary" for proper Tab selector visibility - Fixes agent visibility breaking changes introduced in OpenCode 1.1.1 - 🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode) --- src/plugin-handlers/config-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin-handlers/config-handler.ts b/src/plugin-handlers/config-handler.ts index b4e57c4..8ff2b0a 100644 --- a/src/plugin-handlers/config-handler.ts +++ b/src/plugin-handlers/config-handler.ts @@ -178,7 +178,7 @@ export function createConfigHandler(deps: ConfigHandlerDeps) { const defaultModel = config.model as string | undefined; const plannerSisyphusBase = { model: (migratedPlanConfig as Record).model ?? defaultModel, - mode: "all" as const, + mode: "primary" as const, prompt: PLAN_SYSTEM_PROMPT, permission: PLAN_PERMISSION, description: `${configAgent?.plan?.description ?? "Plan agent"} (OhMyOpenCode version)`,