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.
This commit is contained in:
Adam Weidman
2026-03-16 17:56:58 -04:00
parent 6362e3cc15
commit aabc27c12d
@@ -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();