@deepseek-ai/dsh-terminal-bash 0.1.2-alpha.5 → 0.1.3-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 +2 -2
- package/README.md +1 -1
- package/README.zh.md +1 -1
- package/package.json +16 -16
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/terminal/terminal-bash/README.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: 5dc66b97f550581df18efba55771d30057ab9aa0
|
|
6
|
+
README.zh.md: 85a132ee1cc940fa90a53b91ea399ae48d3fdc2b
|
package/README.md
CHANGED
|
@@ -120,7 +120,7 @@ Read these pages when the package-level contract is not enough. They move from t
|
|
|
120
120
|
- [tool-terminal tools](../tool-terminal/README.md) — the model-facing tools that operate sessions.
|
|
121
121
|
- [Subprocess seam](../../../docs/subsystems/subprocess.md) — the terminal primitive that owns PTY allocation and process-tree cleanup.
|
|
122
122
|
- [Persistent PTY Agent Note](../../../.agents/notes/implemented/feature/2026-07-16-persistent-pty-sessions.md) — the capability design and deferred boundaries.
|
|
123
|
-
- [Persistent pwsh Agent Note](../../../.agents/notes/
|
|
123
|
+
- [Persistent pwsh Agent Note](../../../.agents/notes/archived/architecture/2026-08-11-pwsh-persistent-pty.md) — the Windows substrate and the pwsh dialect.
|
|
124
124
|
|
|
125
125
|
-----
|
|
126
126
|
|
package/README.zh.md
CHANGED
|
@@ -120,7 +120,7 @@ shell 在整个生命周期内运行在有效的沙箱边界之下。当所有
|
|
|
120
120
|
- [tool-terminal 工具](../tool-terminal/README.zh.md)——操作会话的面向模型工具。
|
|
121
121
|
- [子进程 seam](../../../docs/subsystems/subprocess.zh.md)——负责 PTY 分配与进程树清理的终端原语。
|
|
122
122
|
- [持久 PTY Agent Note](../../../.agents/notes/implemented/feature/2026-07-16-persistent-pty-sessions.zh.md)——能力设计与暂缓边界。
|
|
123
|
-
- [持久 pwsh Agent Note](../../../.agents/notes/
|
|
123
|
+
- [持久 pwsh Agent Note](../../../.agents/notes/archived/architecture/2026-08-11-pwsh-persistent-pty.md)——Windows 基底与 pwsh 方言。
|
|
124
124
|
|
|
125
125
|
-----
|
|
126
126
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-terminal-bash",
|
|
3
3
|
"description": "Persistent shell PTY backend over the DeepSeek Harness subprocess terminal primitive",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3-alpha.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -27,28 +27,28 @@
|
|
|
27
27
|
],
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@deepseek-ai/dsh-
|
|
31
|
-
"@deepseek-ai/dsh-
|
|
32
|
-
"@deepseek-ai/dsh-sandbox": "^0.1.
|
|
33
|
-
"@deepseek-ai/dsh-
|
|
34
|
-
"@deepseek-ai/dsh-
|
|
35
|
-
"@deepseek-ai/dsh-subprocess": "^0.1.2-alpha.5",
|
|
30
|
+
"@deepseek-ai/dsh-terminal": "^0.1.3-alpha.2",
|
|
31
|
+
"@deepseek-ai/dsh-sandbox": "^0.1.3-alpha.2",
|
|
32
|
+
"@deepseek-ai/dsh-sandbox-policy": "^0.1.3-alpha.2",
|
|
33
|
+
"@deepseek-ai/dsh-agent": "^0.1.3-alpha.2",
|
|
34
|
+
"@deepseek-ai/dsh-subprocess": "^0.1.3-alpha.2",
|
|
36
35
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
37
|
-
"@deepseek-ai/dsh-session-projection": "^0.1.
|
|
36
|
+
"@deepseek-ai/dsh-session-projection": "^0.1.3-alpha.2",
|
|
37
|
+
"@deepseek-ai/dsh-session": "^0.1.3-alpha.2"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@xterm/headless": "^6.0.0",
|
|
41
|
-
"@deepseek-ai/dsh-pwsh-local": "^0.1.
|
|
41
|
+
"@deepseek-ai/dsh-pwsh-local": "^0.1.3-alpha.2",
|
|
42
42
|
"@deepseek-ai/schemastery": "^3.18.2"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@deepseek-ai/dsh-agent": "^0.1.
|
|
46
|
-
"@deepseek-ai/dsh-terminal": "^0.1.
|
|
47
|
-
"@deepseek-ai/dsh-sandbox": "^0.1.
|
|
48
|
-
"@deepseek-ai/dsh-sandbox-policy": "^0.1.
|
|
49
|
-
"@deepseek-ai/dsh-
|
|
50
|
-
"@deepseek-ai/dsh-subprocess": "^0.1.
|
|
51
|
-
"@deepseek-ai/dsh-
|
|
45
|
+
"@deepseek-ai/dsh-agent": "^0.1.3-alpha.2",
|
|
46
|
+
"@deepseek-ai/dsh-terminal": "^0.1.3-alpha.2",
|
|
47
|
+
"@deepseek-ai/dsh-sandbox": "^0.1.3-alpha.2",
|
|
48
|
+
"@deepseek-ai/dsh-sandbox-policy": "^0.1.3-alpha.2",
|
|
49
|
+
"@deepseek-ai/dsh-subprocess": "^0.1.3-alpha.2",
|
|
50
|
+
"@deepseek-ai/dsh-subprocess-local": "^0.1.3-alpha.2",
|
|
51
|
+
"@deepseek-ai/dsh-session": "^0.1.3-alpha.2",
|
|
52
52
|
"@deepseek-ai/cordis": "^4.0.2"
|
|
53
53
|
}
|
|
54
54
|
}
|