Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
07a42aa
feat(components/execd): modify bash runtime by pty
Pangjiping Jan 16, 2026
d9c20ab
feat(components/execd): use concurrent-safe maps to avoid single poin…
Pangjiping Jan 17, 2026
31db4ac
feat(tests): add python integration test for bash execution
Pangjiping Jan 18, 2026
bb70a0d
feat(tests): add js integration test for bash execution
Pangjiping Jan 18, 2026
1e2ed97
fix(components/execd): reject commands after exit and surface clear s…
Pangjiping Jan 18, 2026
2e9add9
fix(components/execd): preserve bash exit status without killing session
Pangjiping Jan 18, 2026
4b20500
feat(sandboxes/code-interpreter): remove bash jupyter kernel installa…
Pangjiping Jan 18, 2026
d8909da
fix(sandboxes/code-interpreter): fix stderr discard error
Pangjiping Jan 19, 2026
d28a674
fix(sandboxes/code-interpreter): fix windows bash session start state…
Pangjiping Jan 19, 2026
2c9af4c
fix(tests): remove bash context management test
Pangjiping Jan 19, 2026
4d5372a
fix(components/execd): keep bash session newlines to support heredoc …
Pangjiping Jan 29, 2026
ebb9b4b
fix(components/execd): fix exec issue
Pangjiping Jan 30, 2026
1e7f2fa
feat(components/execd): override session's cwd if request.cwd is not …
Pangjiping Feb 5, 2026
575ca47
fix(components/execd): avoid env dump leak when command lacks trailin…
Pangjiping Feb 5, 2026
3532fc9
chore(execd): emit bash session exit errors
Pangjiping Feb 25, 2026
d2d9b9d
fix(execd): run bash session from temp script file to avoid argument …
Pangjiping Feb 26, 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
2 changes: 2 additions & 0 deletions .github/workflows/real-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
pip install uv

- name: Run tests
env:
OPENSANDBOX_SANDBOX_DEFAULT_IMAGE: opensandbox/code-interpreter:latest
run: |
set -e

Expand Down
Loading