From aabc27c12dc8c2c35f98c2b7dc2c236e2e94019c Mon Sep 17 00:00:00 2001 From: Adam Weidman Date: Mon, 16 Mar 2026 17:56:58 -0400 Subject: [PATCH] fix(core): set shell background completionBehavior to silent Shell background completions are set to silent until the idle wake-up listener is in place, otherwise injections get buffered but never consumed when the agent is idle. --- packages/core/src/services/shellExecutionService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/services/shellExecutionService.ts b/packages/core/src/services/shellExecutionService.ts index 07ea0011b1..344a3c08ed 100644 --- a/packages/core/src/services/shellExecutionService.ts +++ b/packages/core/src/services/shellExecutionService.ts @@ -455,7 +455,7 @@ export class ShellExecutionService { : 'successfully'; return `[Background command completed ${status}. Output saved to ${logPath}]`; }, - completionBehavior: 'notify', + completionBehavior: 'silent', }) : undefined; @@ -797,7 +797,7 @@ export class ShellExecutionService { : 'successfully'; return `[Background command completed ${status}. Output saved to ${logPath}]`; }, - completionBehavior: 'notify', + completionBehavior: 'silent', }).result; let processingChain = Promise.resolve();