fix(coding-agent): forward RpcClient subprocess stderr to parent in real-time

fixes #2805
This commit is contained in:
Mario Zechner
2026-04-04 12:41:09 +02:00
parent 84d134061f
commit 72a43dc063
2 changed files with 5 additions and 0 deletions

View File

@@ -2,6 +2,10 @@
## [Unreleased]
### Fixed
- RpcClient now forwards subprocess stderr to parent process in real-time ([#2805](https://github.com/badlogic/pi-mono/issues/2805))
## [0.65.0] - 2026-04-03
### New Features

View File

@@ -92,6 +92,7 @@ export class RpcClient {
// Collect stderr for debugging
this.process.stderr?.on("data", (data) => {
this.stderr += data.toString();
process.stderr.write(data);
});
// Set up strict JSONL reader for stdout.