feat(core): enable shell background completion injection

With the idle wake-up listener in place, shell background
completions can now use 'inject' to feed output back into the
model conversation when the agent is idle.
This commit is contained in:
Adam Weidman
2026-03-16 18:03:12 -04:00
parent b341d48a1e
commit 0215f0ddbd
@@ -455,7 +455,7 @@ export class ShellExecutionService {
: 'successfully';
return `[Background command completed ${status}. Output saved to ${logPath}]`;
},
completionBehavior: 'silent',
completionBehavior: 'inject',
})
: undefined;
@@ -797,7 +797,7 @@ export class ShellExecutionService {
: 'successfully';
return `[Background command completed ${status}. Output saved to ${logPath}]`;
},
completionBehavior: 'silent',
completionBehavior: 'inject',
}).result;
let processingChain = Promise.resolve();