@deepseek-ai/dsh 0.1.0-rc.6 → 0.1.0-rc.7
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.
|
@@ -198,16 +198,16 @@
|
|
|
198
198
|
toolName: subagent_fork
|
|
199
199
|
backgroundMode: continuable
|
|
200
200
|
|
|
201
|
-
#
|
|
202
|
-
#
|
|
203
|
-
#
|
|
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.
|
|
204
204
|
- id: tool-subagent-codex
|
|
205
205
|
name: '@deepseek-ai/dsh-tool-subagent'
|
|
206
206
|
disabled: true
|
|
207
207
|
config:
|
|
208
208
|
provider: codex
|
|
209
209
|
toolName: subagent_codex
|
|
210
|
-
|
|
210
|
+
backgroundMode: one-shot
|
|
211
211
|
maxDepth: provider-managed
|
|
212
212
|
|
|
213
213
|
- id: tool-subagent-claude-code
|
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
config:
|
|
217
217
|
provider: claude-code
|
|
218
218
|
toolName: subagent_claude_code
|
|
219
|
-
|
|
219
|
+
backgroundMode: one-shot
|
|
220
220
|
maxDepth: provider-managed
|
|
221
221
|
|
|
222
222
|
- id: workflow-worker-thread
|
|
@@ -185,16 +185,16 @@
|
|
|
185
185
|
toolName: subagent_fork
|
|
186
186
|
backgroundMode: continuable
|
|
187
187
|
|
|
188
|
-
#
|
|
189
|
-
#
|
|
190
|
-
#
|
|
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.
|
|
191
191
|
- id: tool-subagent-codex
|
|
192
192
|
name: '@deepseek-ai/dsh-tool-subagent'
|
|
193
193
|
disabled: true
|
|
194
194
|
config:
|
|
195
195
|
provider: codex
|
|
196
196
|
toolName: subagent_codex
|
|
197
|
-
|
|
197
|
+
backgroundMode: one-shot
|
|
198
198
|
maxDepth: provider-managed
|
|
199
199
|
|
|
200
200
|
- id: tool-subagent-claude-code
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
config:
|
|
204
204
|
provider: claude-code
|
|
205
205
|
toolName: subagent_claude_code
|
|
206
|
-
|
|
206
|
+
backgroundMode: one-shot
|
|
207
207
|
maxDepth: provider-managed
|
|
208
208
|
|
|
209
209
|
- id: workflow-worker-thread
|
|
@@ -123,7 +123,7 @@ 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
|
|
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.
|
|
127
127
|
|
|
128
128
|
Copy these disabled templates from a shipped full preset and remove `disabled` only for the products the user requested:
|
|
129
129
|
|
|
@@ -134,7 +134,7 @@ Copy these disabled templates from a shipped full preset and remove `disabled` o
|
|
|
134
134
|
config:
|
|
135
135
|
provider: codex
|
|
136
136
|
toolName: subagent_codex
|
|
137
|
-
|
|
137
|
+
backgroundMode: one-shot
|
|
138
138
|
maxDepth: provider-managed
|
|
139
139
|
|
|
140
140
|
- id: tool-subagent-claude-code
|
|
@@ -143,11 +143,11 @@ Copy these disabled templates from a shipped full preset and remove `disabled` o
|
|
|
143
143
|
config:
|
|
144
144
|
provider: claude-code
|
|
145
145
|
toolName: subagent_claude_code
|
|
146
|
-
|
|
146
|
+
backgroundMode: one-shot
|
|
147
147
|
maxDepth: provider-managed
|
|
148
148
|
```
|
|
149
149
|
|
|
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. The host must provide `codex` or `claude` on `PATH`; the preset does not install, authenticate, select a model for, or probe either product.
|
|
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.
|
|
151
151
|
|
|
152
152
|
## What not to move into a preset
|
|
153
153
|
|
|
@@ -197,16 +197,16 @@
|
|
|
197
197
|
toolName: subagent_fork
|
|
198
198
|
backgroundMode: continuable
|
|
199
199
|
|
|
200
|
-
#
|
|
201
|
-
#
|
|
202
|
-
#
|
|
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.
|
|
203
203
|
- id: tool-subagent-codex
|
|
204
204
|
name: '@deepseek-ai/dsh-tool-subagent'
|
|
205
205
|
disabled: true
|
|
206
206
|
config:
|
|
207
207
|
provider: codex
|
|
208
208
|
toolName: subagent_codex
|
|
209
|
-
|
|
209
|
+
backgroundMode: one-shot
|
|
210
210
|
maxDepth: provider-managed
|
|
211
211
|
|
|
212
212
|
- id: tool-subagent-claude-code
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
config:
|
|
216
216
|
provider: claude-code
|
|
217
217
|
toolName: subagent_claude_code
|
|
218
|
-
|
|
218
|
+
backgroundMode: one-shot
|
|
219
219
|
maxDepth: provider-managed
|
|
220
220
|
|
|
221
221
|
- id: workflow-worker-thread
|
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.
|
|
4
|
+
"version": "0.1.0-rc.7",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -25,77 +25,77 @@
|
|
|
25
25
|
"node-addon-require-builtin": "^0.1.4",
|
|
26
26
|
"@deepseek-ai/cordis-plugin-hmr": "^1.0.16",
|
|
27
27
|
"@deepseek-ai/cordis-plugin-include": "^1.0.6",
|
|
28
|
-
"@deepseek-ai/cordis-plugin-timer": "^1.1.3",
|
|
29
|
-
"@deepseek-ai/dsh-agent-tool-presentation": "^0.1.0-rc.6",
|
|
30
|
-
"@deepseek-ai/dsh-app-boot": "^0.1.0-rc.6",
|
|
31
|
-
"@deepseek-ai/dsh-base": "^0.1.0-rc.6",
|
|
32
28
|
"@deepseek-ai/cordis-plugin-loader": "^1.0.2",
|
|
33
|
-
"@deepseek-ai/
|
|
34
|
-
"@deepseek-ai/dsh-
|
|
35
|
-
"@deepseek-ai/dsh-
|
|
36
|
-
"@deepseek-ai/dsh-
|
|
37
|
-
"@deepseek-ai/dsh-
|
|
38
|
-
"@deepseek-ai/dsh-
|
|
39
|
-
"@deepseek-ai/dsh-
|
|
40
|
-
"@deepseek-ai/dsh-
|
|
41
|
-
"@deepseek-ai/dsh-goal
|
|
42
|
-
"@deepseek-ai/dsh-
|
|
43
|
-
"@deepseek-ai/dsh-
|
|
44
|
-
"@deepseek-ai/dsh-
|
|
45
|
-
"@deepseek-ai/dsh-
|
|
46
|
-
"@deepseek-ai/dsh-
|
|
47
|
-
"@deepseek-ai/dsh-
|
|
48
|
-
"@deepseek-ai/dsh-
|
|
49
|
-
"@deepseek-ai/dsh-
|
|
50
|
-
"@deepseek-ai/dsh-
|
|
51
|
-
"@deepseek-ai/dsh-
|
|
52
|
-
"@deepseek-ai/dsh-
|
|
53
|
-
"@deepseek-ai/dsh-
|
|
54
|
-
"@deepseek-ai/dsh-
|
|
55
|
-
"@deepseek-ai/dsh-
|
|
56
|
-
"@deepseek-ai/dsh-
|
|
57
|
-
"@deepseek-ai/dsh-
|
|
58
|
-
"@deepseek-ai/dsh-
|
|
59
|
-
"@deepseek-ai/dsh-
|
|
60
|
-
"@deepseek-ai/dsh-
|
|
61
|
-
"@deepseek-ai/dsh-
|
|
62
|
-
"@deepseek-ai/dsh-
|
|
63
|
-
"@deepseek-ai/dsh-
|
|
64
|
-
"@deepseek-ai/dsh-
|
|
65
|
-
"@deepseek-ai/dsh-tool-
|
|
66
|
-
"@deepseek-ai/dsh-
|
|
67
|
-
"@deepseek-ai/dsh-tool-
|
|
68
|
-
"@deepseek-ai/dsh-tool-
|
|
69
|
-
"@deepseek-ai/dsh-tool-
|
|
70
|
-
"@deepseek-ai/dsh-tool-
|
|
71
|
-
"@deepseek-ai/dsh-
|
|
72
|
-
"@deepseek-ai/dsh-tool-
|
|
73
|
-
"@deepseek-ai/dsh-
|
|
74
|
-
"@deepseek-ai/dsh-tool-
|
|
75
|
-
"@deepseek-ai/dsh-tool-
|
|
76
|
-
"@deepseek-ai/dsh-tool-
|
|
77
|
-
"@deepseek-ai/dsh-tool-
|
|
78
|
-
"@deepseek-ai/dsh-tool-
|
|
79
|
-
"@deepseek-ai/dsh-tool-
|
|
80
|
-
"@deepseek-ai/dsh-web
|
|
81
|
-
"@deepseek-ai/dsh-
|
|
82
|
-
"@deepseek-ai/dsh-
|
|
83
|
-
"@deepseek-ai/
|
|
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",
|
|
81
|
+
"@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"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@types/js-yaml": "^4.0.9",
|
|
87
87
|
"execa": "^10.0.0",
|
|
88
|
-
"@deepseek-ai/dsh-agent": "^0.1.0-rc.
|
|
89
|
-
"@deepseek-ai/dsh-host-frontend-static": "^0.1.0-rc.
|
|
90
|
-
"@deepseek-ai/dsh-host-apiproxy": "^0.1.0-rc.
|
|
91
|
-
"@deepseek-ai/dsh-host-webserver": "^0.1.0-rc.
|
|
92
|
-
"@deepseek-ai/dsh-llm": "^0.1.0-rc.
|
|
93
|
-
"@deepseek-ai/dsh-llm-mock-server": "^0.1.0-rc.
|
|
94
|
-
"@deepseek-ai/dsh-
|
|
95
|
-
"@deepseek-ai/dsh-
|
|
96
|
-
"@deepseek-ai/dsh-
|
|
97
|
-
"@deepseek-ai/dsh-
|
|
98
|
-
"@deepseek-ai/dsh-
|
|
99
|
-
"@deepseek-ai/dsh-
|
|
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"
|
|
100
100
|
}
|
|
101
101
|
}
|