fix(coding-agent,tui): drop typebox compiler shim and fix progress

This commit is contained in:
Mario Zechner
2026-04-22 21:12:20 +02:00
parent 35ff2689ee
commit 3dacaa8ed9
18 changed files with 130 additions and 60 deletions

View File

@@ -363,8 +363,8 @@ export class ProcessTerminal implements Terminal {
setProgress(active: boolean): void {
if (active) {
// OSC 9;4;1;0 - indeterminate progress
process.stdout.write("\x1b]9;4;1;0\x07");
// OSC 9;4;3 - indeterminate progress
process.stdout.write("\x1b]9;4;3\x07");
} else {
// OSC 9;4;0 - clear progress
process.stdout.write("\x1b]9;4;0;\x07");