fix(core): remove shell outputChunks buffer caching to prevent memory bloat and sanitize prompt input (#23751)

This commit is contained in:
Spencer
2026-03-26 17:16:07 -04:00
committed by GitHub
parent 30397816da
commit d25ce0e143
4 changed files with 37 additions and 39 deletions
@@ -16,7 +16,7 @@ export type ExecutionMethod =
| 'none';
export interface ExecutionResult {
rawOutput: Buffer;
rawOutput?: Buffer;
output: string;
exitCode: number | null;
signal: number | null;