@deepseek-ai/dsh-subprocess-e2b 0.0.1-rc.2 → 0.0.1-rc.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.i18n.yaml CHANGED
@@ -2,5 +2,5 @@
2
2
  # side as of the last confirmed-consistent state. Both languages carry equal authority;
3
3
  # after editing either side, bring the other along and re-record with:
4
4
  # pnpm run verify-translation-pairing --write packages/e2b/subprocess-e2b/README.md
5
- README.md: e27582e5603e430e1467cb6e47c6f12bd1a0b886
6
- README.zh.md: 788c6273f1f2f30795d8d1ea09b481a85b88a2f6
5
+ README.md: 6e0ef633577377af6045c8b81d6f1e141bc46b54
6
+ README.zh.md: fe57bfda0b5e2dc24598e82d55a1446f9ab518f2
package/README.md CHANGED
@@ -17,7 +17,7 @@ E2B implementation of the [`@deepseek-ai/dsh-subprocess`](../../subprocess/subpr
17
17
  - **Linux process groups** — a quoted wrapper starts each argv under `exec setsid --wait` and records its actual process-group id plus private status files beneath `ctx.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 with `SIGTERM`, waits the caller's `graceMs`, then escalates to `SIGKILL` and the SDK kill fallback; TERM delivery or probe failures also force that escalation. Process-table probes treat groups containing only zombie or dead entries as quiescent. Force cleanup succeeds only after a bounded probe finds the group empty; otherwise `waitForExit()` exposes a retryable failure, while proven quiescence makes later termination a no-op. Publication and monitoring failures apply the same cleanup transaction before rejecting. Service disposal rejects new starts, terminates and joins every retained process group, then awaits SDK settlement and private cleanup before the sandbox owner disposes.
18
18
  - **Environment boundary** — one trusted control-shell probe resolves the sandbox user's login home from its passwd entry and transports the sandbox environment as base64 ASCII for one strict UTF-8 decode; the wrapper then removes ambient `DSH_*` and credential-shaped (`*KEY*`, `*SECRET*`, `*TOKEN*`) names and restores every valid `spec.env` entry as an explicit caller opt-in. Empty names, `=`, and NUL framing violations reject before launch. Subsequent E2B command and PTY login shells receive a fresh randomized root-level `HOME` plus empty overrides for every scrubbed ambient name before user profiles can run; the requested argv receives the serialized environment afterward without changing the sandbox user's umask. Host ambient variables never enter the sandbox implicitly. Private environment files are removed after consumption, and failed command or terminal setup removes its private state before rejecting.
19
19
  - **Stdio projection** — the remote wrapper branches raw bytes into optional bounded spill files, frames each live chunk as newline-delimited base64 ASCII, and the host incrementally restores bytes across arbitrary SDK callback boundaries. Pipe mode writes those bytes to host Node streams; inherit mode writes them to the harness process streams; collect mode retains a bounded host tail with offset reads. The wrapper publishes the direct command status before waiting for inherited writers. For collect or inherit output, the adapter disconnects an incomplete SDK stream after `graceMs`, withholds its partial spill, and returns that status while retaining the remote group for `waitForExit()` and termination. Natural raw-pipe completion instead awaits lossless transport and preserves backpressure; explicit termination destroys the host pipes and releases blocked output before remote cleanup. Batch and streaming stdin use the SDK handle.
20
- - **Terminal sessions** — `spawnTerminal()` uses E2B's byte PTY API, installs the exact argv and scrubbed environment through private mode-`0600` files, reports the foreground process group, sends real signals, and tears down every live group in the remote terminal session through one retryable awaited `terminate()`; termination rejects new handle operations, aborts and joins in-flight writes, inspections, and signals, and treats zombie-only groups as quiescent. A private random output boundary discards the E2B bootstrap shell's prompt and echoed runner command while preserving every requested-process byte, including its first prompt. Terminal output is pushed to the handle's stream without awaiting host backpressure: a flowing consumer (the PTY backend attaches one at construction) folds bytes into its own bounded state, while a paused consumer buffers in host memory. PTY allocation is awaited through handle publication before cancellation is observed, so owned rollback can clean the published handle. Setup and teardown own the private state transaction, abort pending setup during service disposal, and fence publication; sandbox disposal or timeout bounds a setup rollback that also fails. Prompt detection, scrollback, readiness, and owner policy remain in `dsh-pty-local`.
20
+ - **Terminal sessions** — `spawnTerminal()` uses E2B's byte PTY API, installs the exact argv and scrubbed environment through private mode-`0600` files, reports the foreground process group, sends real signals, and tears down every live group in the remote terminal session through one retryable awaited `terminate()`; termination rejects new handle operations, aborts and joins in-flight writes, inspections, and signals, and treats zombie-only groups as quiescent. A private random output boundary discards the E2B bootstrap shell's prompt and echoed runner command while preserving every requested-process byte, including its first prompt. Terminal output is pushed to the handle's stream without awaiting host backpressure: a flowing consumer (the PTY backend attaches one at construction) folds bytes into its own bounded state, while a paused consumer buffers in host memory. PTY allocation is awaited through handle publication before cancellation is observed, so owned rollback can clean the published handle. Setup and teardown own the private state transaction, abort pending setup during service disposal, and fence publication; sandbox disposal or timeout bounds a setup rollback that also fails. Prompt detection, scrollback, readiness, and owner policy remain in `dsh-terminal-bash`.
21
21
  - **Sandbox disappearance** — `SandboxNotFoundError` during process or terminal liveness, termination, rollback, or disconnect proves the remote execution world cannot retain work, so cleanup treats it as quiescent; unrelated failures remain observable.
22
22
 
23
23
  The default E2B base image supplies the runtime and Bash/GNU utilities this adapter invokes: `node`, `bash`, `setsid`, `ps`, `awk`, `tr`, `env`, `base64`, `chmod`, `tee`, `head`, `rm`, `kill`, `id`, and `getent`.
package/README.zh.md CHANGED
@@ -2,22 +2,22 @@
2
2
 
3
3
  [English](README.md) | 中文
4
4
 
5
- [`@deepseek-ai/dsh-subprocess`](../../subprocess/subprocess/README.md) seam 的 E2B 实现。先加载 [`@deepseek-ai/dsh-e2b`](../e2b/README.md),再用本服务取代 `dsh-subprocess-local`。现有的 Bash、PTY 和 LSP 消费方随后会在共享远程沙箱中执行,无需 E2B 专用的功能包(package)。
5
+ [`@deepseek-ai/dsh-subprocess`](../../subprocess/subprocess/README.md) seam 的 E2B 实现。先加载 [`@deepseek-ai/dsh-e2b`](../e2b/README.md),再用本服务取代 `dsh-subprocess-local`。现有的 Bash、PTY 和 LSP 消费方随后会在共享远程沙箱中执行,无需 E2B 专用的能力包。
6
6
 
7
7
  ## 配置
8
8
 
9
9
  | 键 | 默认值 | 含义 |
10
10
  | --- | --- | --- |
11
- | `pollMs` | `20` | 远程状态/存活轮询节奏(毫秒);每个 tick 是一次控制面请求,调大该值以牺牲退出观察延迟换取更少的请求。 |
11
+ | `pollMs` | `20` | 远程状态/存活轮询间隔(毫秒);每个 tick 是一次控制面请求,调大该值以牺牲退出观察延迟换取更少的请求。 |
12
12
 
13
13
  ## 行为
14
14
 
15
15
  - **异步远程启动**:同步 seam 会立即返回一个句柄,同时由 `Sandbox.commands.run(..., { background: true })` 在远程启动进程。包装层发布进程组 ID 并由适配器完成验证之前,`pid` 为 `-1`;stdin 和常规观察会等待该发布。自有启动信号会在分配前中止环境和私有状态准备;分配开始后,取消会等待可清理的临时 SDK 句柄。
16
16
  - **执行世界坐标**:`cwd` 和私有 `runtimeRoot` 来自共享所有者;可执行文件查找会验证绝对路径,或根据沙箱 PATH 加显式覆盖来解析裸名称,并与所有 subprocess 提供方一致地拒绝含分隔符的相对路径。
17
- - **Linux 进程组**:带引号保护的包装层会在 `exec setsid --wait` 下启动每组 argv,并在 `ctx.e2b.runtimeRoot/processes` 下记录实际进程组 ID 和私有状态文件。句柄会等待该文件,而不会把 SDK 命令 PID 当作已发布的身份。终止操作以记录的负数 ID 发送 `SIGTERM`,等待调用方的 `graceMs`,再升级到 `SIGKILL` 和 SDK kill 回退;TERM 信号发送或探测失败也会强制触发该升级。进程表探测会把仅含僵尸或已死亡条目的进程组视为完全停稳。强制清理只有在有界探测发现进程组为空后才算成功;否则 `waitForExit()` 会公开可重试的失败,而已证明的完全停稳会让后续终止操作不再执行任何动作。发布失败与监控失败都会在拒绝前执行同一清理事务。服务 dispose(资源释放)会拒绝新的启动请求、终止并等待每个保留进程组退出,再等待 SDK 结算和私有清理完成,之后沙箱所有者才会释放。
17
+ - **Linux 进程组**:带引号保护的包装层会在 `exec setsid --wait` 下启动每组 argv,并在 `ctx.e2b.runtimeRoot/processes` 下记录实际进程组 ID 和私有状态文件。句柄会等待该文件,而不会把 SDK 命令 PID 当作已发布的身份。终止操作以记录的负数 ID 发送 `SIGTERM`,等待调用方的 `graceMs`,再升级到 `SIGKILL` 和 SDK kill 回退;TERM 信号发送或探测失败也会强制触发该升级。进程表探测会把仅含僵尸或已死亡条目的进程组视为完全停稳。强制清理只有在有界探测发现进程组为空后才算成功;否则 `waitForExit()` 会公开可重试的失败,而已证明的完全停稳会让后续终止操作不再执行任何动作。发布失败与监控失败都会在拒绝前执行同一清理事务。服务 dispose(资源释放)会拒绝新的启动请求、终止并等待每个保留进程组退出,再等待 SDK 结算和私有清理完成,之后沙箱所有者才会释放沙箱。
18
18
  - **环境边界**:一次受信任的控制 shell 探测会从 passwd 条目解析沙箱用户的登录主目录,以 base64 ASCII 传输沙箱环境,再进行一次严格 UTF-8 解码;随后包装层移除环境中的 `DSH_*` 和形似凭据的名称(`*KEY*`、`*SECRET*`、`*TOKEN*`),并把每个有效的 `spec.env` 条目恢复为调用方显式选择。空名称、`=` 和违反 NUL 分帧规则的条目会在启动前被拒绝。在用户 profile 脚本运行前,此后的 E2B 命令 shell 与 PTY 登录 shell 会获得位于根目录下、全新随机生成的 `HOME`,并为每个被清理的环境变量名设置空值覆盖;之后,请求的 argv 会在不改变沙箱用户 umask 的前提下接收序列化环境。宿主环境变量绝不会隐式进入沙箱。私有环境文件在使用后会被删除;命令或终端设置失败时,会先删除其私有状态再拒绝。
19
19
  - **stdio 投影**:远程包装层先把原始字节分流到可选的有界 spill 文件,再把每个实时分片编码为换行分隔的 base64 ASCII 帧;宿主会跨任意 SDK 回调边界增量恢复字节。pipe 模式把这些字节写入宿主 Node 流;inherit 模式把字节写入 harness 进程流;collect 模式保留有界的宿主尾部,并支持基于偏移量读取。包装层会在等待继承管道的写入方之前发布直接命令状态。对于 collect 或 inherit 输出,超过 `graceMs` 后,适配器会断开未完成的 SDK 流,不公开其中不完整的 spill,并返回该状态,同时保留远程进程组供 `waitForExit()` 和终止操作使用。原始 pipe 自然完成时,会等待无损传输完成并保留背压;显式终止则会销毁宿主 pipe,并在远程清理前释放受阻的输出写入。批量 stdin 和流式 stdin 都使用 SDK 句柄。
20
- - **终端会话**:`spawnTerminal()` 使用 E2B 的字节 PTY API,以 mode 为 `0600` 的私有文件传入原样 argv 与清理后的环境,报告前台进程组,发送真实信号,并通过一项可重试且须等待的 `terminate()` 清理远程终端会话中仍存活的每个进程组;终止会拒绝新的句柄操作,中止并等待在途写入、检查和信号操作结算,并把仅含僵尸进程的进程组视为已经完全停稳。私有随机输出边界会丢弃 E2B 引导 shell 的提示符和回显的 runner 命令,同时保留请求进程的每个字节,包括其第一个提示符。终端输出推入句柄流时不等待宿主背压:流动的消费方(PTY 后端在构造时就挂上一个)把字节折叠进自身的有界状态,而暂停的消费方会在宿主内存中缓冲。PTY 分配会一直等待到句柄发布后才观察取消,以便由承担清理责任的回滚清理已发布句柄。setup 与 teardown 负责私有状态事务,在服务 dispose 期间中止待处理的 setup 并阻止发布;若 setup 回滚也失败,则由沙箱 dispose 或超时约束其存活时间。提示符检测、scrollback、就绪状态与所有者策略仍归 `dsh-pty-local` 所有。
20
+ - **终端会话**:`spawnTerminal()` 使用 E2B 的字节 PTY API,以 mode 为 `0600` 的私有文件传入原样 argv 与清理后的环境,报告前台进程组,发送真实信号,并通过一项可重试且须等待的 `terminate()` 清理远程终端会话中仍存活的每个进程组;终止会拒绝新的句柄操作,中止并等待在途写入、检查和信号操作结算,并把仅含僵尸进程的进程组视为已经完全停稳。私有随机输出边界会丢弃 E2B 引导 shell 的提示符和回显的 runner 命令,同时保留请求进程的每个字节,包括其第一个提示符。终端输出推入句柄流时不等待宿主背压:流动的消费方(PTY 后端在构造时就挂上一个)把字节折叠进自身的有界状态,而暂停的消费方会在宿主内存中缓冲。在句柄发布前会一直等待 PTY 分配完成,之后才观察取消,以便由承担清理责任的回滚清理已发布句柄。setup 与 teardown 负责私有状态事务,在服务 dispose 期间中止待处理的 setup 并阻止发布;若 setup 回滚也失败,则由沙箱 dispose 或超时约束其存活时间。提示符检测、scrollback、就绪状态与所有者策略仍归 `dsh-terminal-bash` 所有。
21
21
  - **沙箱消失**:在进程或终端的存活探测、终止、回滚或断开连接期间出现 `SandboxNotFoundError`,证明远程执行环境无法保留工作,因此清理会将其视为完全停稳;其他故障仍可观察。
22
22
 
23
23
  E2B 默认基础镜像提供该适配器调用的运行时和 Bash/GNU 工具:`node`、`bash`、`setsid`、`ps`、`awk`、`tr`、`env`、`base64`、`chmod`、`tee`、`head`、`rm`、`kill`、`id` 和 `getent`。
@@ -33,7 +33,7 @@ E2B 默认基础镜像提供该适配器调用的运行时和 Bash/GNU 工具:
33
33
  ## 已知限制与延后工作
34
34
 
35
35
  - **SDK 仍会在宿主内存中保留完整命令输出**:即使本适配器公开的是有界原始字节尾部,E2B `CommandHandle.stdout` 和 `.stderr` 仍会累积 base64 传输内容,因此无法达到进程管理 seam 通常提供的宿主内存边界,而且传输保留量大于源数据流。
36
- - **不支持需要同步 PID 的消费方**:远程启动期间,`pid` 保持为 `-1`;包括 ACP 子进程后端在内,要求立即获得正 PID 的消费方无法原样使用本提供方。
36
+ - **不支持需要同步 PID 的消费方**:远程启动期间,`pid` 保持为 `-1`;包括 ACP(Agent Client Protocol)子进程后端在内,要求立即获得正 PID 的消费方无法原样使用本提供方。
37
37
  - **私有状态随沙箱生命周期存在**:进程目录和有效的 spill 文件会留在 `.dsh-e2b` 下,直到所有者删除沙箱;本 POC 不提供沙箱内清理。
38
38
  - **控制状态与沙箱用户同 UID**:E2B 以同一默认用户运行每条命令,因此 `0700`/`0600` 权限无法把 `.dsh-e2b` 控制文件与并发运行的沙箱进程隔离开。后台进程可以改写 `pid`/`exit-code`,或读取尚未被消费的 `environment` 文件。适配器会验证已发布的值,并拒绝取负后不安全的进程组 ID(`<= 1`),但真正的隔离需要 E2B 提供按命令用户或带外控制通道。
39
39
  - **数值进程身份没有复用围栏**:E2B 公开基于数值 PID/PGID 的 PTY 输入、信号发送和清理操作,却没有与身份原子绑定的替代方案。适配器会尽量减少宿主往返,真实环境测试会覆盖可复现的陈旧中断重叠;在 E2B 新增身份原语,或实际故障证明需要更窄的协议之前,替代方案会继续延后。
package/lib/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { randomUUID } from "node:crypto";
2
2
  import { posix } from "node:path";
3
3
  import z from "@deepseek-ai/schemastery";
4
- import { SENSITIVE_ENV_PATTERN, SubprocessService } from "@deepseek-ai/dsh-subprocess";
4
+ import { SENSITIVE_ENV_PATTERN, SubprocessRuntime } from "@deepseek-ai/dsh-subprocess";
5
5
  import { MAX_TIMER_DELAY_MS } from "@deepseek-ai/dsh-timeout";
6
6
  import { CommandExitError, FileNotFoundError, SandboxNotFoundError, e2bControlEnvs, quoteE2BShellArg } from "@deepseek-ai/dsh-e2b";
7
7
  import { PassThrough, Writable } from "node:stream";
@@ -1323,7 +1323,7 @@ function requireRepresentableGrace(graceMs) {
1323
1323
  if (!Number.isFinite(graceMs) || graceMs <= 0 || graceMs > MAX_TIMER_DELAY_MS) throw new Error(`subprocess graceMs must be a positive finite number no greater than ${MAX_TIMER_DELAY_MS}`);
1324
1324
  }
1325
1325
  /** E2B command manager registered as `ctx.subprocess`. */
1326
- var E2BSubprocessService = class extends SubprocessService {
1326
+ var E2BSubprocessRuntime = class extends SubprocessRuntime {
1327
1327
  static inject = ["e2b"];
1328
1328
  static Config = z.object({ pollMs: z.number().default(20) });
1329
1329
  live = /* @__PURE__ */ new Set();
@@ -1441,4 +1441,4 @@ var E2BSubprocessService = class extends SubprocessService {
1441
1441
  }
1442
1442
  };
1443
1443
  //#endregion
1444
- export { E2BSubprocessService, E2BSubprocessService as default };
1444
+ export { E2BSubprocessRuntime, E2BSubprocessRuntime as default };
@@ -5,7 +5,7 @@
5
5
  */
6
6
  import { Context } from '@deepseek-ai/cordis';
7
7
  import z from '@deepseek-ai/schemastery';
8
- import { SubprocessService } from '@deepseek-ai/dsh-subprocess';
8
+ import { SubprocessRuntime } from '@deepseek-ai/dsh-subprocess';
9
9
  import type { SubprocessHandle, SubprocessSpawnSpec, SubprocessTerminalHandle, SubprocessTerminalSpawnSpec } from '@deepseek-ai/dsh-subprocess';
10
10
  /** Configuration for the E2B subprocess adapter. */
11
11
  export interface Config {
@@ -13,7 +13,7 @@ export interface Config {
13
13
  pollMs?: number;
14
14
  }
15
15
  /** E2B command manager registered as `ctx.subprocess`. */
16
- export declare class E2BSubprocessService extends SubprocessService {
16
+ export declare class E2BSubprocessRuntime extends SubprocessRuntime {
17
17
  static inject: string[];
18
18
  static Config: z<Config>;
19
19
  private readonly live;
@@ -30,5 +30,5 @@ export declare class E2BSubprocessService extends SubprocessService {
30
30
  /** @inheritdoc */
31
31
  spawnTerminal(spec: SubprocessTerminalSpawnSpec): Promise<SubprocessTerminalHandle>;
32
32
  }
33
- export default E2BSubprocessService;
33
+ export default E2BSubprocessRuntime;
34
34
  //# sourceMappingURL=index.d.ts.map
@@ -1,7 +1,7 @@
1
1
  /** One asynchronously-started E2B command projected onto the subprocess seam. */
2
2
  import { PassThrough, Writable } from 'node:stream';
3
3
  import type { SubprocessHandle, SubprocessOutcome, SubprocessSpawnSpec } from '@deepseek-ai/dsh-subprocess';
4
- import type E2BSandboxService from '@deepseek-ai/dsh-e2b';
4
+ import type E2BRuntime from '@deepseek-ai/dsh-e2b';
5
5
  /** E2B-backed subprocess handle with deferred remote PID acquisition. */
6
6
  export declare class E2BSubprocessHandle implements SubprocessHandle {
7
7
  private readonly runtime;
@@ -39,7 +39,7 @@ export declare class E2BSubprocessHandle implements SubprocessHandle {
39
39
  * @param stateDir - Remote directory retaining process identity, status, and valid spills.
40
40
  * @param pollMs - Remote status/liveness poll cadence.
41
41
  */
42
- constructor(runtime: E2BSandboxService, spec: SubprocessSpawnSpec, stateDir: string, pollMs: number);
42
+ constructor(runtime: E2BRuntime, spec: SubprocessSpawnSpec, stateDir: string, pollMs: number);
43
43
  /** Remote process id after start; `-1` while E2B startup is pending or after it fails. */
44
44
  get pid(): number;
45
45
  /** @inheritdoc */
@@ -2,7 +2,7 @@
2
2
  import { PassThrough } from 'node:stream';
3
3
  import type { CommandHandle, CommandResult, Sandbox } from '@deepseek-ai/dsh-e2b';
4
4
  import type { SubprocessOutcome, SubprocessTerminalForeground, SubprocessTerminalHandle, SubprocessTerminalSignal, SubprocessTerminalSpawnSpec } from '@deepseek-ai/dsh-subprocess';
5
- import type E2BSandboxService from '@deepseek-ai/dsh-e2b';
5
+ import type E2BRuntime from '@deepseek-ai/dsh-e2b';
6
6
  /** One E2B PTY and all process groups in its remote process session. */
7
7
  export declare class E2BTerminalHandle implements SubprocessTerminalHandle {
8
8
  private readonly sandbox;
@@ -45,5 +45,5 @@ export declare class E2BTerminalHandle implements SubprocessTerminalHandle {
45
45
  * @param pollMs - Remote session liveness poll cadence.
46
46
  * @returns The live subprocess terminal handle.
47
47
  */
48
- export declare function spawnE2BTerminal(runtime: E2BSandboxService, spec: SubprocessTerminalSpawnSpec, stateDir: string, pollMs: number): Promise<E2BTerminalHandle>;
48
+ export declare function spawnE2BTerminal(runtime: E2BRuntime, spec: SubprocessTerminalSpawnSpec, stateDir: string, pollMs: number): Promise<E2BTerminalHandle>;
49
49
  //# sourceMappingURL=terminal.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-subprocess-e2b",
3
3
  "description": "E2B subprocess implementation for DeepSeek Harness",
4
- "version": "0.0.1-rc.2",
4
+ "version": "0.0.1-rc.5",
5
5
  "publishConfig": {
6
6
  "access": "restricted"
7
7
  },
@@ -32,20 +32,20 @@
32
32
  ],
33
33
  "license": "BSD-3-Clause",
34
34
  "peerDependencies": {
35
- "@deepseek-ai/dsh-invariants": "^0.0.1-rc.2",
36
- "@deepseek-ai/dsh-e2b": "^0.0.1-rc.2",
37
- "@deepseek-ai/dsh-timeout": "^0.0.1-rc.2",
38
- "@deepseek-ai/dsh-subprocess": "^0.0.1-rc.2",
39
- "@deepseek-ai/cordis": "^4.0.1-rc.1"
35
+ "@deepseek-ai/dsh-e2b": "^0.0.1-rc.5",
36
+ "@deepseek-ai/dsh-invariants": "^0.0.1-rc.5",
37
+ "@deepseek-ai/dsh-subprocess": "^0.0.1-rc.5",
38
+ "@deepseek-ai/dsh-timeout": "^0.0.1-rc.5",
39
+ "@deepseek-ai/cordis": "^4.0.1-rc.4"
40
40
  },
41
41
  "dependencies": {
42
- "@deepseek-ai/schemastery": "^3.18.1-rc.1"
42
+ "@deepseek-ai/schemastery": "^3.18.1-rc.4"
43
43
  },
44
44
  "devDependencies": {
45
- "@deepseek-ai/dsh-e2b": "^0.0.1-rc.2",
46
- "@deepseek-ai/dsh-invariants": "^0.0.1-rc.2",
47
- "@deepseek-ai/dsh-subprocess": "^0.0.1-rc.2",
48
- "@deepseek-ai/dsh-timeout": "^0.0.1-rc.2",
49
- "@deepseek-ai/cordis": "^4.0.1-rc.1"
45
+ "@deepseek-ai/dsh-e2b": "^0.0.1-rc.5",
46
+ "@deepseek-ai/dsh-invariants": "^0.0.1-rc.5",
47
+ "@deepseek-ai/dsh-subprocess": "^0.0.1-rc.5",
48
+ "@deepseek-ai/dsh-timeout": "^0.0.1-rc.5",
49
+ "@deepseek-ai/cordis": "^4.0.1-rc.4"
50
50
  }
51
51
  }