From 325ce1212b52d978a0af9f9a708aa2fa23fcaddf Mon Sep 17 00:00:00 2001 From: justsisyphus Date: Wed, 14 Jan 2026 13:54:34 +0900 Subject: [PATCH] fix(config): remove hidden flag from demoted plan agent Plan agent should remain visible as subagent when Prometheus replaces it. Previously hidden:true made it completely invisible in the UI. --- 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 d8754051..0fc1c06c 100644 --- a/src/plugin-handlers/config-handler.ts +++ b/src/plugin-handlers/config-handler.ts @@ -253,7 +253,7 @@ export function createConfigHandler(deps: ConfigHandlerDeps) { : {}; const planDemoteConfig = replacePlan - ? { mode: "subagent" as const, hidden: true } + ? { mode: "subagent" as const } : undefined; config.agent = {