From 27d145d0ea512db49122b99237b004d22043be16 Mon Sep 17 00:00:00 2001 From: Devansh Jain <31609257+devanshrj@users.noreply.github.com> Date: Fri, 27 Feb 2026 20:07:55 -0800 Subject: [PATCH] feat: silence reflection subagent from primary agent context (#1221) --- src/cli/App.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/cli/App.tsx b/src/cli/App.tsx index 572b098..e786646 100644 --- a/src/cli/App.tsx +++ b/src/cli/App.tsx @@ -9358,6 +9358,13 @@ ${SYSTEM_REMINDER_CLOSE} subagentType: "reflection", prompt: AUTO_REFLECTION_PROMPT, description: AUTO_REFLECTION_DESCRIPTION, + silentCompletion: true, + onComplete: ({ success, error }) => { + const msg = success + ? "Reflected on /palace, the halls remember more now." + : `Tried to reflect, but got lost in the palace: ${error}`; + appendTaskNotificationEvents([msg]); + }, }); debugLog( "memory",