Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
34dd781
fix: strip command echo and prompt from terminal output (#303531)
alexdima Mar 21, 2026
31a4a74
Fix compilation errors
alexdima Mar 21, 2026
a32b488
fix: tighten trailing prompt stripping to avoid dropping legitimate o…
alexdima Mar 21, 2026
d4359ab
Review feedback
alexdima Mar 21, 2026
842c746
fix: skip stale prompt fragments before command echo in stripping
alexdima Mar 21, 2026
5c733b6
fix: handle macOS CI prompt format and add stripping to rich strategy
alexdima Mar 21, 2026
865568d
fix: Linux CI sandbox prereqs, platform-aware tests, broader prompt s…
alexdima Mar 21, 2026
22913a3
fix: detect sandbox failures heuristically when exit code is unavailable
alexdima Mar 21, 2026
f4c042b
Relax some tests when shell integration is off
alexdima Mar 21, 2026
7517f8a
refactor: extract findCommandEcho and use prompt evidence to narrow t…
alexdima Mar 21, 2026
f464412
Cover case where the command is duplicated in `stripCommandEchoAndPro…
alexdima Mar 21, 2026
436b09a
Fix sandbox tests for Linux: handle different shell path and error me…
alexdima Mar 21, 2026
61627c8
Merge remote-tracking branch 'origin/main' into alexdima/fix-303531-s…
alexdima Mar 21, 2026
4ed68ee
Fix slash history test
alexdima Mar 21, 2026
5059232
Fix sandbox execPath resolution for remote environments
alexdima Mar 21, 2026
5563927
Fix terminal output capture: prevent premature idle detection and han…
alexdima Mar 21, 2026
bd3ecf8
Fix mock in unit test
alexdima Mar 21, 2026
e1fdfd1
Address PR feedback: logging, performance, timeout, and docs
alexdima Mar 22, 2026
f0a7531
Install bubblewrap and socat in Linux CI pipelines
alexdima Mar 22, 2026
6e84e45
Force /bin/bash over /bin/sh for copilot terminal profile
alexdima Mar 22, 2026
9644aa3
Fix bracketed prompt without @ and cap trailing prompt stripping at 2…
alexdima Mar 22, 2026
b2b4e0e
Distinguish complete vs fragment prompts to prevent false stripping
alexdima Mar 22, 2026
487646c
Attempt to cover up the `run_in_terminal` tool not being registered q…
alexdima Mar 22, 2026
be95b65
Fix terminal output capture: strip command echo/prompt, fix premature…
alexdima Mar 22, 2026
12e343f
fix: exclude sandbox analyzer when sandbox rewriting is disabled (#30…
alexdima Mar 22, 2026
a7e3a4e
fix: remove backslash escaping from terminal command labels (#303856)
alexdima Mar 22, 2026
ca117fb
Accept "Command produced no output" when shell integration is off (#3…
alexdima Mar 22, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/pr-linux-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
libxkbfile-dev \
libkrb5-dev \
libgbm1 \
rpm
rpm \
bubblewrap \
socat
sudo cp build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb
sudo chmod +x /etc/init.d/xvfb
sudo update-rc.d xvfb defaults
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
libxkbfile-dev \
libkrb5-dev \
libgbm1 \
rpm
rpm \
bubblewrap \
socat
sudo cp build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb
sudo chmod +x /etc/init.d/xvfb
sudo update-rc.d xvfb defaults
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ steps:
libxkbfile-dev \
libkrb5-dev \
libgbm1 \
rpm
rpm \
bubblewrap \
socat
sudo cp build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb
sudo chmod +x /etc/init.d/xvfb
sudo update-rc.d xvfb defaults
Expand Down
Loading
Loading