@deepseek-ai/dsh 0.1.0-rc.7 → 0.1.1-rc.1

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
@@ -3,4 +3,4 @@
3
3
  # after editing either side, bring the other along and re-record with:
4
4
  # pnpm run verify-translation-pairing --write apps/cli/README.md
5
5
  README.md: 9a8d722b044ed5d8e31e3c27e54f8c9ef0839f82
6
- README.zh.md: 7889b4180b5ce2f65550f98708d498f324ac349d
6
+ README.zh.md: c092414e2d15e90133d8ea27f0af5cadbe527b22
package/README.zh.md CHANGED
@@ -17,7 +17,7 @@
17
17
 
18
18
  ## 应用参数
19
19
 
20
- 启动器只解析自身的 flag,并将其后的所有内容交给已启动的 profile;注入该 profile 的任意应用插件都可以解析这份共享的不可变快照([`dsh-cmdline`](../../packages/boot/cmdline/README.md))。因此,启动器的 flag 必须写在最前面;启动器无法识别的第一个 token 标志着应用参数的开始:
20
+ 启动器只解析自身的 flag,并将其后的所有内容交给已启动的 profile;注入该 profile 的任意应用插件都可以解析这份共享的不可变快照([`dsh-cmdline`](../../packages/boot/cmdline/README.zh.md))。因此,启动器的 flag 必须写在最前面;启动器无法识别的第一个 token 标志着应用参数的开始:
21
21
 
22
22
  ```sh
23
23
  dsh --profile web --port 8080 # --port belongs to the web app
@@ -27,6 +27,8 @@ dsh --profile web --help # the web app's flags, not the launcher's
27
27
  dsh --help # the launcher's own help
28
28
  ```
29
29
 
30
+ <a id="profiles"></a>
31
+
30
32
  ## Profile
31
33
 
32
34
  profile 目录包含一个 `package.json`,其中记录树外插件依赖,以及 profile manifest(元数据清单)`dsh.profile` 和其中按顺序排列的 `bundles` 列表;还包含一个 `cordis.patch.yml`,其中保存用户自己的 patch 层。
@@ -40,8 +42,8 @@ profile 目录包含一个 `package.json`,其中记录树外插件依赖,以
40
42
 
41
43
  使用 `--dump-default-config` 和 `--dump-config` 可在不启动的情况下检查组合后的配置树。
42
44
 
43
- 层的确切优先级、flag、关闭行为、部署默认值和源码执行方式,以 [CLI(命令行界面)行为参考](reference/README.md)为准。
45
+ 层的确切优先级、flag、关闭行为、部署默认值和源码执行方式,以 [CLI(命令行界面)行为参考](reference/README.zh.md)为准。
44
46
 
45
47
  ## 开发
46
48
 
47
- 生产运行需要已构建的包与前端产物。请在仓库根目录单独运行 `pnpm run build`,然后使用 `pnpm dsh <args...>` 运行 TypeScript 入口并转发所有参数;模块解析约定以[源码执行参考](reference/README.md#source-execution)为准。
49
+ 生产运行需要已构建的包与前端产物。请在仓库根目录单独运行 `pnpm run build`,然后使用 `pnpm dsh <args...>` 运行 TypeScript 入口并转发所有参数;模块解析约定以[源码执行参考](reference/README.zh.md#source-execution)为准。
@@ -198,9 +198,10 @@
198
198
  toolName: subagent_fork
199
199
  backgroundMode: continuable
200
200
 
201
- # Production dsh does not install these optional providers. An opting-in
202
- # Profile mounts each provider once on the host plane; copy this preset,
203
- # then remove `disabled` from the matching tool row.
201
+ # Production dsh does not install these optional providers. Install the
202
+ # matching Bundle in this Profile and restart the Host, then copy this
203
+ # preset and remove `disabled` from the matching tool row. Host availability
204
+ # alone grants no tool.
204
205
  - id: tool-subagent-codex
205
206
  name: '@deepseek-ai/dsh-tool-subagent'
206
207
  disabled: true
@@ -185,9 +185,10 @@
185
185
  toolName: subagent_fork
186
186
  backgroundMode: continuable
187
187
 
188
- # Production dsh does not install these optional providers. An opting-in
189
- # Profile mounts each provider once on the host plane; copy this preset,
190
- # then remove `disabled` from the matching tool row.
188
+ # Production dsh does not install these optional providers. Install the
189
+ # matching Bundle in this Profile and restart the Host, then copy this
190
+ # preset and remove `disabled` from the matching tool row. Host availability
191
+ # alone grants no tool.
191
192
  - id: tool-subagent-codex
192
193
  name: '@deepseek-ai/dsh-tool-subagent'
193
194
  disabled: true
@@ -123,7 +123,16 @@ After a clean mount-validation, ask the user to start a session on the new prese
123
123
 
124
124
  ## Native product subagents
125
125
 
126
- Codex and Claude Code providers belong on the host plane but are not installed by production `dsh`. The active Profile must install and mount the selected provider before a preset can expose its ordinary delegation-tool row; never move a product provider into the preset and never add a product-specific settings field.
126
+ Codex and Claude Code providers are independent optional Profile Bundles. Install only the products a Profile needs, then restart the Profile so its Host registers those providers:
127
+
128
+ ```sh
129
+ dsh plugin --profile <name> add @deepseek-ai/dsh-subagent-codex
130
+ dsh plugin --profile <name> add @deepseek-ai/dsh-subagent-claude-code
131
+ dsh plugin --profile <name> remove @deepseek-ai/dsh-subagent-codex
132
+ dsh plugin --profile <name> remove @deepseek-ai/dsh-subagent-claude-code
133
+ ```
134
+
135
+ Each Bundle owns its Host availability; the preset separately grants one Agent its ordinary delegation tool. Never move a product provider into the preset and never add a product-specific settings field. Removing one package withdraws only that provider on the next Profile start.
127
136
 
128
137
  Copy these disabled templates from a shipped full preset and remove `disabled` only for the products the user requested:
129
138
 
@@ -147,7 +156,9 @@ Copy these disabled templates from a shipped full preset and remove `disabled` o
147
156
  maxDepth: provider-managed
148
157
  ```
149
158
 
150
- The two rows are independent. Leaving both disabled preserves the copied preset, enabling one exposes only that product tool, and enabling both exposes both. Production `dsh` does not install or mount either optional provider: before enabling a row, the Profile must install the matching `@deepseek-ai/dsh-subagent-codex` or `@deepseek-ai/dsh-subagent-claude-code` package and mount it once on the host plane. A preset cannot provide that host dependency. `backgroundMode: one-shot` keeps omitted or `false` calls in the foreground and lets explicit `run_in_background: true` return a generic Job id. Full presets already carry `tool-jobs`, while the base host carries the job registry; retain both so `job_output`, `job_list`, `job_kill`, cancellation, and completion notices stay available. The host must also provide `codex` or `claude` on `PATH`; the preset does not install, authenticate, select a model for, or probe either product.
159
+ For additional named Codex or Claude Code instances, mount a separate host-plane provider row for each instance with a unique `providerName`, then add a separate preset tool row whose `provider` exactly matches that name and whose `toolName` is also unique. Keep the shipped rows for the default `codex` and `claude-code` names; do not reuse one tool row for several providers or derive either name from permission or environment settings.
160
+
161
+ The two rows are independent. Leaving both disabled preserves the copied preset, enabling one exposes only that product tool, and enabling both exposes both. Production `dsh` does not install either optional provider: before enabling a row, install the matching `@deepseek-ai/dsh-subagent-codex` or `@deepseek-ai/dsh-subagent-claude-code` Bundle in the Profile and restart it. Each Bundle registers its dormant default provider and exclusively uses its pinned package-local platform CLI; additional named instances use extra host-plane rows from the same installed package. A preset cannot provide that host dependency. `backgroundMode: one-shot` keeps omitted or `false` calls in the foreground and lets explicit `run_in_background: true` return a generic Job id. Full presets already carry `tool-jobs`, while the base host carries the job registry; retain both so `job_output`, `job_list`, `job_kill`, cancellation, and completion notices stay available. Installing a Bundle or composing a preset row does not start a product, authenticate an account, select a model, probe credentials, or manage native product settings.
151
162
 
152
163
  ## What not to move into a preset
153
164
 
@@ -3,7 +3,8 @@
3
3
  # The persona is the complete system prompt, so global identity, Web orientation,
4
4
  # tool guidance, and later assembly listeners cannot add prompt text. Runtime
5
5
  # context snapshots are suppressed for this preset, and the model composes only
6
- # persistent `bash` and `str_replace_editor`. Context compaction is absent.
6
+ # the persistent shell (`bash` on POSIX, `pwsh` on win32) and
7
+ # `str_replace_editor`. Context compaction is absent.
7
8
 
8
9
  - id: persona
9
10
  name: '@deepseek-ai/dsh-persona'
@@ -15,6 +16,8 @@
15
16
  # The PTY registry is an agent-owned service, so it lives in an entry-local
16
17
  # realm. The backend still consumes the host sandbox policy and subprocess
17
18
  # implementation, while the tool registers into this agent's scoped catalog.
19
+ # Exactly one shell stack mounts per host: the bash stack gates off win32 and
20
+ # its pwsh twin gates off POSIX, mirroring the one-shot shell rows.
18
21
  - id: persistent-shell
19
22
  name: cordis:group
20
23
  group: true
@@ -26,11 +29,13 @@
26
29
 
27
30
  - id: terminal-bash
28
31
  name: '@deepseek-ai/dsh-terminal-bash'
32
+ disabled: !!js process.platform === 'win32'
29
33
  config:
30
34
  timeoutMs: 300000
31
35
 
32
36
  - id: persistent-bash
33
37
  name: '@deepseek-ai/dsh-tool-bash-persistent'
38
+ disabled: !!js process.platform === 'win32'
34
39
  config:
35
40
  timeoutMs: 300000
36
41
  description: |-
@@ -43,6 +48,27 @@
43
48
  * Please avoid commands that may produce a very large amount of output.
44
49
  * Please run long lived commands in the background, e.g. 'sleep 10 &' or start a server in the background.
45
50
 
51
+ - id: terminal-pwsh
52
+ name: '@deepseek-ai/dsh-terminal-bash'
53
+ disabled: !!js process.platform !== 'win32'
54
+ config:
55
+ shellDialect: pwsh
56
+ timeoutMs: 300000
57
+
58
+ - id: persistent-pwsh
59
+ name: '@deepseek-ai/dsh-tool-pwsh-persistent'
60
+ disabled: !!js process.platform !== 'win32'
61
+ config:
62
+ timeoutMs: 300000
63
+ description: |-
64
+ Run commands in a PowerShell shell
65
+ * When invoking this tool, the contents of the "command" parameter does NOT need to be XML-escaped.
66
+ * You don't have access to the internet via this tool.
67
+ * State is persistent across command calls and discussions with the user.
68
+ * Use native Windows paths (C:\...) and $env:NAME variables; this is PowerShell, not bash.
69
+ * Please avoid commands that may produce a very large amount of output.
70
+ * Please run long lived commands in the background, e.g. 'Start-Job' or start a server with Start-Process.
71
+
46
72
  # The bare local filesystem shadows the host's sandboxed provider only for this
47
73
  # preset. The editor shares that realm and requires absolute paths.
48
74
  - id: filesystem
@@ -197,9 +197,10 @@
197
197
  toolName: subagent_fork
198
198
  backgroundMode: continuable
199
199
 
200
- # Production dsh does not install these optional providers. An opting-in
201
- # Profile mounts each provider once on the host plane; copy this preset,
202
- # then remove `disabled` from the matching tool row.
200
+ # Production dsh does not install these optional providers. Install the
201
+ # matching Bundle in this Profile and restart the Host, then copy this
202
+ # preset and remove `disabled` from the matching tool row. Host availability
203
+ # alone grants no tool.
203
204
  - id: tool-subagent-codex
204
205
  name: '@deepseek-ai/dsh-tool-subagent'
205
206
  disabled: true
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh",
3
3
  "description": "dsh CLI: profile boot, plugin management, and the browser UI alias",
4
- "version": "0.1.0-rc.7",
4
+ "version": "0.1.1-rc.1",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -27,75 +27,76 @@
27
27
  "@deepseek-ai/cordis-plugin-include": "^1.0.6",
28
28
  "@deepseek-ai/cordis-plugin-loader": "^1.0.2",
29
29
  "@deepseek-ai/cordis-plugin-timer": "^1.1.3",
30
- "@deepseek-ai/dsh-agent-tool-presentation": "^0.1.0-rc.7",
31
- "@deepseek-ai/dsh-app-boot": "^0.1.0-rc.7",
32
- "@deepseek-ai/dsh-cordis-client-runner": "^0.1.0-rc.7",
33
- "@deepseek-ai/dsh-base": "^0.1.0-rc.7",
34
- "@deepseek-ai/dsh-client-ui-agent-preset": "^0.1.0-rc.7",
35
- "@deepseek-ai/dsh-client-ui-cordis": "^0.1.0-rc.7",
36
- "@deepseek-ai/dsh-command-compact": "^0.1.0-rc.7",
37
- "@deepseek-ai/dsh-command-goal": "^0.1.0-rc.7",
38
- "@deepseek-ai/dsh-compaction-basic": "^0.1.0-rc.7",
39
- "@deepseek-ai/dsh-compaction-tool-result-pruner": "^0.1.0-rc.7",
40
- "@deepseek-ai/dsh-goal": "^0.1.0-rc.7",
41
- "@deepseek-ai/dsh-goal-round-driver": "^0.1.0-rc.7",
42
- "@deepseek-ai/dsh-cmdline": "^0.1.0-rc.7",
43
- "@deepseek-ai/dsh-launch-environment": "^0.1.0-rc.7",
44
- "@deepseek-ai/dsh-fs-local": "^0.1.0-rc.7",
45
- "@deepseek-ai/dsh-headless": "^0.1.0-rc.7",
46
- "@deepseek-ai/dsh-mcp-client": "^0.1.0-rc.7",
47
- "@deepseek-ai/dsh-home-paths": "^0.1.0-rc.7",
48
- "@deepseek-ai/dsh-persona": "^0.1.0-rc.7",
49
- "@deepseek-ai/dsh-plan-mode": "^0.1.0-rc.7",
50
- "@deepseek-ai/dsh-terminal-bash": "^0.1.0-rc.7",
51
- "@deepseek-ai/dsh-pwsh-local": "^0.1.0-rc.7",
52
- "@deepseek-ai/dsh-pwsh-sandbox": "^0.1.0-rc.7",
53
- "@deepseek-ai/dsh-session-projection": "^0.1.0-rc.7",
54
- "@deepseek-ai/dsh-session-reference": "^0.1.0-rc.7",
55
- "@deepseek-ai/dsh-time-context": "^0.1.0-rc.7",
56
- "@deepseek-ai/dsh-skill": "^0.1.0-rc.7",
57
- "@deepseek-ai/dsh-skill-filesystem": "^0.1.0-rc.7",
58
- "@deepseek-ai/dsh-jobs-local": "^0.1.0-rc.7",
59
- "@deepseek-ai/dsh-tmux-context": "^0.1.0-rc.7",
60
- "@deepseek-ai/dsh-token-meter": "^0.1.0-rc.7",
61
- "@deepseek-ai/dsh-tool-ask-user": "^0.1.0-rc.7",
62
- "@deepseek-ai/dsh-terminal": "^0.1.0-rc.7",
63
- "@deepseek-ai/dsh-tool-bash": "^0.1.0-rc.7",
64
- "@deepseek-ai/dsh-tool-fs": "^0.1.0-rc.7",
65
- "@deepseek-ai/dsh-tool-fs-search": "^0.1.0-rc.7",
66
- "@deepseek-ai/dsh-tool-goal": "^0.1.0-rc.7",
67
- "@deepseek-ai/dsh-tool-cordis": "^0.1.0-rc.7",
68
- "@deepseek-ai/dsh-tool-ralph": "^0.1.0-rc.7",
69
- "@deepseek-ai/dsh-schedule": "^0.1.0-rc.7",
70
- "@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.0-rc.7",
71
- "@deepseek-ai/dsh-tool-bash-persistent": "^0.1.0-rc.7",
72
- "@deepseek-ai/dsh-tool-subagent-control": "^0.1.0-rc.7",
73
- "@deepseek-ai/dsh-tool-jobs": "^0.1.0-rc.7",
74
- "@deepseek-ai/dsh-tool-todo": "^0.1.0-rc.7",
75
- "@deepseek-ai/dsh-tool-pwsh": "^0.1.0-rc.7",
76
- "@deepseek-ai/dsh-tool-web": "^0.1.0-rc.7",
77
- "@deepseek-ai/dsh-web-app": "^0.1.0-rc.7",
78
- "@deepseek-ai/dsh-workflow-worker-thread": "^0.1.0-rc.7",
79
- "@deepseek-ai/dsh-tool-skill": "^0.1.0-rc.7",
80
- "@deepseek-ai/dsh-agent-instructions": "^0.1.0-rc.7",
30
+ "@deepseek-ai/dsh-agent-tool-presentation": "^0.1.1-rc.1",
31
+ "@deepseek-ai/dsh-app-boot": "^0.1.1-rc.1",
32
+ "@deepseek-ai/dsh-cordis-client-runner": "^0.1.1-rc.1",
33
+ "@deepseek-ai/dsh-base": "^0.1.1-rc.1",
34
+ "@deepseek-ai/dsh-client-ui-agent-preset": "^0.1.1-rc.1",
35
+ "@deepseek-ai/dsh-client-ui-cordis": "^0.1.1-rc.1",
36
+ "@deepseek-ai/dsh-command-compact": "^0.1.1-rc.1",
37
+ "@deepseek-ai/dsh-command-goal": "^0.1.1-rc.1",
38
+ "@deepseek-ai/dsh-compaction-tool-result-pruner": "^0.1.1-rc.1",
39
+ "@deepseek-ai/dsh-goal": "^0.1.1-rc.1",
40
+ "@deepseek-ai/dsh-goal-round-driver": "^0.1.1-rc.1",
41
+ "@deepseek-ai/dsh-cmdline": "^0.1.1-rc.1",
42
+ "@deepseek-ai/dsh-launch-environment": "^0.1.1-rc.1",
43
+ "@deepseek-ai/dsh-fs-local": "^0.1.1-rc.1",
44
+ "@deepseek-ai/dsh-headless": "^0.1.1-rc.1",
45
+ "@deepseek-ai/dsh-mcp-client": "^0.1.1-rc.1",
46
+ "@deepseek-ai/dsh-home-paths": "^0.1.1-rc.1",
47
+ "@deepseek-ai/dsh-compaction-basic": "^0.1.1-rc.1",
48
+ "@deepseek-ai/dsh-persona": "^0.1.1-rc.1",
49
+ "@deepseek-ai/dsh-plan-mode": "^0.1.1-rc.1",
50
+ "@deepseek-ai/dsh-terminal": "^0.1.1-rc.1",
51
+ "@deepseek-ai/dsh-terminal-bash": "^0.1.1-rc.1",
52
+ "@deepseek-ai/dsh-pwsh-local": "^0.1.1-rc.1",
53
+ "@deepseek-ai/dsh-pwsh-sandbox": "^0.1.1-rc.1",
54
+ "@deepseek-ai/dsh-session-reference": "^0.1.1-rc.1",
55
+ "@deepseek-ai/dsh-time-context": "^0.1.1-rc.1",
56
+ "@deepseek-ai/dsh-skill": "^0.1.1-rc.1",
57
+ "@deepseek-ai/dsh-skill-filesystem": "^0.1.1-rc.1",
58
+ "@deepseek-ai/dsh-jobs-local": "^0.1.1-rc.1",
59
+ "@deepseek-ai/dsh-tmux-context": "^0.1.1-rc.1",
60
+ "@deepseek-ai/dsh-token-meter": "^0.1.1-rc.1",
61
+ "@deepseek-ai/dsh-tool-ask-user": "^0.1.1-rc.1",
62
+ "@deepseek-ai/dsh-tool-bash-persistent": "^0.1.1-rc.1",
63
+ "@deepseek-ai/dsh-tool-bash": "^0.1.1-rc.1",
64
+ "@deepseek-ai/dsh-tool-cordis": "^0.1.1-rc.1",
65
+ "@deepseek-ai/dsh-tool-fs": "^0.1.1-rc.1",
66
+ "@deepseek-ai/dsh-tool-fs-search": "^0.1.1-rc.1",
67
+ "@deepseek-ai/dsh-tool-goal": "^0.1.1-rc.1",
68
+ "@deepseek-ai/dsh-session-projection": "^0.1.1-rc.1",
69
+ "@deepseek-ai/dsh-tool-ralph": "^0.1.1-rc.1",
70
+ "@deepseek-ai/dsh-schedule": "^0.1.1-rc.1",
71
+ "@deepseek-ai/dsh-tool-pwsh-persistent": "^0.1.1-rc.1",
72
+ "@deepseek-ai/dsh-tool-subagent": "^0.1.1-rc.1",
73
+ "@deepseek-ai/dsh-tool-subagent-control": "^0.1.1-rc.1",
74
+ "@deepseek-ai/dsh-tool-jobs": "^0.1.1-rc.1",
75
+ "@deepseek-ai/dsh-tool-skill": "^0.1.1-rc.1",
76
+ "@deepseek-ai/dsh-tool-todo": "^0.1.1-rc.1",
77
+ "@deepseek-ai/dsh-tool-web": "^0.1.1-rc.1",
78
+ "@deepseek-ai/dsh-tool-workflow": "^0.1.1-rc.1",
79
+ "@deepseek-ai/dsh-web-app": "^0.1.1-rc.1",
80
+ "@deepseek-ai/dsh-workflow-worker-thread": "^0.1.1-rc.1",
81
+ "@deepseek-ai/dsh-agent-instructions": "^0.1.1-rc.1",
81
82
  "@deepseek-ai/cordis": "^4.0.1",
82
- "@deepseek-ai/dsh-tool-workflow": "^0.1.0-rc.7",
83
- "@deepseek-ai/dsh-tool-subagent": "^0.1.0-rc.7"
83
+ "@deepseek-ai/dsh-tool-pwsh": "^0.1.1-rc.1",
84
+ "@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.1-rc.1"
84
85
  },
85
86
  "devDependencies": {
86
87
  "@types/js-yaml": "^4.0.9",
87
88
  "execa": "^10.0.0",
88
- "@deepseek-ai/dsh-agent": "^0.1.0-rc.7",
89
- "@deepseek-ai/dsh-host-frontend-static": "^0.1.0-rc.7",
90
- "@deepseek-ai/dsh-host-apiproxy": "^0.1.0-rc.7",
91
- "@deepseek-ai/dsh-host-webserver": "^0.1.0-rc.7",
92
- "@deepseek-ai/dsh-llm": "^0.1.0-rc.7",
93
- "@deepseek-ai/dsh-llm-mock-server": "^0.1.0-rc.7",
94
- "@deepseek-ai/dsh-system-prompt": "^0.1.0-rc.7",
95
- "@deepseek-ai/dsh-subagent": "^0.1.0-rc.7",
96
- "@deepseek-ai/dsh-tools": "^0.1.0-rc.7",
97
- "@deepseek-ai/dsh-settings": "^0.1.0-rc.7",
98
- "@deepseek-ai/dsh-session": "^0.1.0-rc.7",
99
- "@deepseek-ai/dsh-loader-smoke": "^0.1.0-rc.7"
89
+ "@deepseek-ai/dsh-host-frontend-static": "^0.1.1-rc.1",
90
+ "@deepseek-ai/dsh-host-apiproxy": "^0.1.1-rc.1",
91
+ "@deepseek-ai/dsh-agent": "^0.1.1-rc.1",
92
+ "@deepseek-ai/dsh-host-webserver": "^0.1.1-rc.1",
93
+ "@deepseek-ai/dsh-llm-mock-server": "^0.1.1-rc.1",
94
+ "@deepseek-ai/dsh-loader-smoke": "^0.1.1-rc.1",
95
+ "@deepseek-ai/dsh-session": "^0.1.1-rc.1",
96
+ "@deepseek-ai/dsh-llm": "^0.1.1-rc.1",
97
+ "@deepseek-ai/dsh-settings": "^0.1.1-rc.1",
98
+ "@deepseek-ai/dsh-subagent": "^0.1.1-rc.1",
99
+ "@deepseek-ai/dsh-system-prompt": "^0.1.1-rc.1",
100
+ "@deepseek-ai/dsh-tools": "^0.1.1-rc.1"
100
101
  }
101
102
  }