@deepseek-ai/dsh-subprocess-e2b 0.1.3-alpha.2 → 0.1.5-alpha.2

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: 8222f81e3b077aabf5c4dd4f2c4d58e501b2846a
6
- README.zh.md: 449ca331f96cb7799535a94c7b4d7583c2447ead
5
+ README.md: 1c88e8b8650b93d326086f53311840922656244b
6
+ README.zh.md: 74c43ae98724e652618026c9eb3191998fbf52a9
package/README.md CHANGED
@@ -9,7 +9,7 @@ English | [中文](README.zh.md)
9
9
 
10
10
  ## Summary
11
11
 
12
- `dsh-subprocess-e2b` runs the agent's shell commands and terminals inside the remote sandbox: the agent can execute Bash, open interactive terminals, and read their output exactly as with local execution, while nothing runs on the host machine. Existing command, terminal, and language-server features keep working unchanged — no E2B-specific tools are needed. Secrets and host environment variables never leak into the sandbox: only environment entries the agent explicitly requests are passed along. Use it together with `dsh-e2b` and `dsh-fs-e2b` so commands, terminals, and files share one remote world. The main cost is remote latency each command starts with a short asynchronous setup instead of launching instantly.
12
+ `dsh-subprocess-e2b` runs the agent's shell commands and interactive terminals inside an E2B remote sandbox instead of the host. Existing command, terminal, and language-server workflows continue without E2B-specific tools. Host environment variables and secrets are excluded; only explicitly requested environment entries enter the sandbox. Use it with `dsh-e2b` and `dsh-fs-e2b` so commands, terminals, and files share one sandbox. Remote execution adds latency because each command requires asynchronous setup.
13
13
 
14
14
  ## Table of Contents
15
15
 
package/README.zh.md CHANGED
@@ -9,7 +9,7 @@ kind: "package-reference"
9
9
 
10
10
  ## 概述
11
11
 
12
- `dsh-subprocess-e2b` 让 agent(智能体)的 shell 命令与终端在远程沙箱内运行:agent 可以执行 Bash、打开交互式终端并读取其输出,体验与本地执行完全一致,而宿主机器上什么都不会运行。现有的命令、终端与语言服务器功能无需任何改动即可继续工作——不需要 E2B 专用工具。密钥与宿主环境变量绝不会泄漏进沙箱:只有 agent 显式请求的环境条目才会传入。请与 `dsh-e2b`、`dsh-fs-e2b` 一起使用,让命令、终端与文件共享同一个远程世界。主要代价是远程延迟——每条命令都要经过一段短暂异步初始化,而不是立即启动。
12
+ `dsh-subprocess-e2b` 让 agent(智能体)的 shell 命令与交互式终端在 E2B 远程沙箱而非宿主中运行。现有的命令、终端与语言服务器工作流无需 E2B 专用工具即可继续使用。宿主环境变量与密钥不会传入沙箱;只有显式请求的环境条目会进入沙箱。请与 `dsh-e2b`、`dsh-fs-e2b` 一起使用,让命令、终端与文件共享同一个沙箱。远程执行会增加延迟,因为每条命令都需要异步初始化。
13
13
 
14
14
  ## 目录
15
15
 
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.1.3-alpha.2",
4
+ "version": "0.1.5-alpha.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -27,18 +27,18 @@
27
27
  ],
28
28
  "license": "MIT",
29
29
  "peerDependencies": {
30
- "@deepseek-ai/dsh-e2b": "^0.1.3-alpha.2",
31
- "@deepseek-ai/dsh-timeout": "^0.1.3-alpha.2",
32
- "@deepseek-ai/dsh-subprocess": "^0.1.3-alpha.2",
33
- "@deepseek-ai/cordis": "^4.0.2"
30
+ "@deepseek-ai/dsh-subprocess": "^0.1.5-alpha.2",
31
+ "@deepseek-ai/dsh-e2b": "^0.1.5-alpha.2",
32
+ "@deepseek-ai/cordis": "^4.0.2",
33
+ "@deepseek-ai/dsh-timeout": "^0.1.5-alpha.2"
34
34
  },
35
35
  "dependencies": {
36
36
  "@deepseek-ai/schemastery": "^3.18.2"
37
37
  },
38
38
  "devDependencies": {
39
- "@deepseek-ai/dsh-e2b": "^0.1.3-alpha.2",
40
- "@deepseek-ai/dsh-timeout": "^0.1.3-alpha.2",
41
- "@deepseek-ai/dsh-subprocess": "^0.1.3-alpha.2",
39
+ "@deepseek-ai/dsh-e2b": "^0.1.5-alpha.2",
40
+ "@deepseek-ai/dsh-subprocess": "^0.1.5-alpha.2",
41
+ "@deepseek-ai/dsh-timeout": "^0.1.5-alpha.2",
42
42
  "@deepseek-ai/cordis": "^4.0.2"
43
43
  }
44
44
  }