@deepseek-ai/dsh-subprocess-e2b
English | 中文
E2B implementation of the @deepseek-ai/dsh-subprocess seam. It has no config: load @deepseek-ai/dsh-e2b first, then this service in place of dsh-subprocess-local. Existing Bash, PTY, LSP, and subprocess Code Runtime consumers then execute in the shared remote sandbox without E2B-specific capability packages.
Behavior
- Asynchronous remote start — the synchronous seam returns a handle immediately while
Sandbox.commands.run(..., { background: true })starts remotely.pidis-1until the wrapper publishes and the adapter validates its process-group id;done, stdin, termination, andwaitForExit()wait for readiness internally. - Execution-world coordinates —
cwdand privateruntimeRootcome from the shared owner; executable lookup verifies absolute paths or resolves a bare name against the sandbox PATH plus explicit overrides. - Linux process groups — a quoted wrapper starts each argv under
exec setsid --waitand records its actual process-group id plus private status files beneathctx.e2b.runtimeRoot/processes. The handle waits for that file instead of treating the SDK command PID as its published identity. Termination signals the negative recorded id withSIGTERM, waits the caller'sgraceMs, then escalates toSIGKILLand the SDK kill fallback. If publication fails, the SDK PID remains the provisionalexec setsidgroup id; rollback kills and verifies that group before startup rejects. Service disposal terminates and joins every retained handle before the sandbox owner disposes. - Environment boundary — the wrapper starts from the sandbox command environment, removes ambient
DSH_*and credential-shaped (*KEY*,*SECRET*,*TOKEN*) names, then restores everyspec.enventry as an explicit caller opt-in. Host ambient variables never enter the sandbox implicitly. - Stdio projection — pipe mode forwards E2B callbacks into host Node streams; inherit mode forwards them to the harness process streams; collect mode retains a bounded host tail with offset reads. Optional complete spill files are written remotely and advertised only while within their cap. Batch and streaming stdin use the SDK handle.
- Terminal sessions —
spawnTerminal()uses E2B's byte PTY API, installs the exact argv and scrubbed environment through private mode-0600files, reports the foreground process group, sends real signals, and tears down every group in the remote terminal session before settlement. Prompt detection, scrollback, readiness, and owner policy remain indsh-pty-local.
The base E2B image supplies the Bash/GNU utilities this adapter invokes: bash, setsid, ps, awk, tr, env, chmod, tee, head, and kill. A custom template must retain compatible commands and E2B PTY support.
Model Experience
Indirectly, through consumer seams such as the Bash executor behind dsh-tool-bash, which render remote output, exit facts, background deltas, and spill paths.
KV Cache effect
No direct invalidation; the named consumers own any request-prefix changes.
Known Limitations and Deferred Work
- The SDK still retains complete command output in host memory — E2B
CommandHandle.stdoutand.stderraccumulate even when this adapter exposes bounded tails, so the subprocess seam's normal host-memory bound is not achieved. - Command-pipe output is text-decoded by the SDK — valid UTF-8 protocol traffic, including the exercised LSP composition and Code Runtime's ASCII/base64 frames, is supported; arbitrary binary protocols and invalid UTF-8 are not byte-faithful.
- Synchronous-PID consumers are unsupported —
pidremains-1during remote startup; consumers that require a positive PID immediately, including the ACP child backend, cannot use this provider unchanged. - Reconnect does not reconstruct handles — remote PID/status/spill files survive a retained sandbox, but a new harness process does not rebuild live
SubprocessHandleobjects or output cursors from them. - Remote state accumulates when retained — process directories and valid spill files remain under
.dsh-e2b; this POC supplies no retention sweep. - Signal attribution is inferred — when termination was requested and E2B reports a nonzero exit code, the adapter reports the last requested signal because the SDK result does not identify the terminating signal.
- Exact terminal stdin-wait inspection is unavailable — E2B exposes the foreground process group but not the syscall evidence needed to prove it is waiting on fd 0, so the generic PTY backend falls back to controlled prompt markers and bounded silence.
- Linux utility and E2B transport semantics are assumed — there is no Windows, arbitrary-template, escaped-session recovery, or network-partition fidelity layer.