@norman-else/dsh-claude 0.1.51 → 0.1.52
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/INSTALL.md +120 -55
- package/LICENSE +21 -21
- package/README.md +25 -15
- package/cordis.patch.yml +12 -12
- package/legacy-preset/agent.cordis.yml +11 -11
- package/legacy-preset/preset.yml +4 -4
- package/lib/bin.mjs +0 -0
- package/lib/bin.mjs.map +1 -1
- package/lib/client.d.ts +0 -3
- package/lib/client.js +41 -185
- package/lib/client.js.map +1 -1
- package/lib/events-B498uofA.mjs.map +1 -1
- package/lib/index.mjs +248 -24
- package/lib/index.mjs.map +1 -1
- package/lib/presenters-CRFcjLSC.mjs.map +1 -1
- package/lib/preset-installer-Cj637ucf.mjs.map +1 -1
- package/lib/preset-route.mjs.map +1 -1
- package/package.json +222 -222
- package/preset/claude/agent.cordis.yml +11 -11
- package/preset/claude/preset.yml +4 -4
package/package.json
CHANGED
|
@@ -1,222 +1,222 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@norman-else/dsh-claude",
|
|
3
|
-
"description": "Run the local Claude Code CLI as a first-class main conversation inside DeepSeek Harness",
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "lib/index.mjs",
|
|
7
|
-
"types": "lib/index.d.mts",
|
|
8
|
-
"bin": {
|
|
9
|
-
"dsh-claude": "lib/bin.mjs"
|
|
10
|
-
},
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "tsdown",
|
|
13
|
-
"typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.client.json",
|
|
14
|
-
"test": "vitest run",
|
|
15
|
-
"check": "pnpm run typecheck && pnpm run test && pnpm run build",
|
|
16
|
-
"prepack": "pnpm run build",
|
|
17
|
-
"release": "node scripts/publish.mjs",
|
|
18
|
-
"release:check": "node scripts/publish.mjs --dry-run"
|
|
19
|
-
},
|
|
20
|
-
"exports": {
|
|
21
|
-
".": {
|
|
22
|
-
"types": "./lib/index.d.mts",
|
|
23
|
-
"default": "./lib/index.mjs"
|
|
24
|
-
},
|
|
25
|
-
"./preset-route": {
|
|
26
|
-
"types": "./lib/preset-route.d.mts",
|
|
27
|
-
"default": "./lib/preset-route.mjs"
|
|
28
|
-
},
|
|
29
|
-
"./client": "./lib/client.js",
|
|
30
|
-
"./package.json": "./package.json"
|
|
31
|
-
},
|
|
32
|
-
"files": [
|
|
33
|
-
"lib",
|
|
34
|
-
"preset",
|
|
35
|
-
"legacy-preset",
|
|
36
|
-
"cordis.patch.yml",
|
|
37
|
-
"README.md",
|
|
38
|
-
"INSTALL.md",
|
|
39
|
-
"LICENSE"
|
|
40
|
-
],
|
|
41
|
-
"license": "MIT",
|
|
42
|
-
"repository": {
|
|
43
|
-
"type": "git",
|
|
44
|
-
"url": "git+https://github.com/Norman-else/dsh-claude.git"
|
|
45
|
-
},
|
|
46
|
-
"homepage": "https://github.com/Norman-else/dsh-claude#readme",
|
|
47
|
-
"bugs": {
|
|
48
|
-
"url": "https://github.com/Norman-else/dsh-claude/issues"
|
|
49
|
-
},
|
|
50
|
-
"publishConfig": {
|
|
51
|
-
"access": "public"
|
|
52
|
-
},
|
|
53
|
-
"engines": {
|
|
54
|
-
"node": ">=20"
|
|
55
|
-
},
|
|
56
|
-
"dsh": {
|
|
57
|
-
"bundle": {
|
|
58
|
-
"patch": "./cordis.patch.yml"
|
|
59
|
-
},
|
|
60
|
-
"client": {
|
|
61
|
-
"inject": [
|
|
62
|
-
"@deepseek-ai/dsh-client-connection",
|
|
63
|
-
"@deepseek-ai/dsh-api-session-controller",
|
|
64
|
-
"@deepseek-ai/dsh-api-workspace-controller",
|
|
65
|
-
"@deepseek-ai/dsh-api-remotes",
|
|
66
|
-
"@deepseek-ai/dsh-client-ui-chat",
|
|
67
|
-
"@deepseek-ai/dsh-client-ui-conversation",
|
|
68
|
-
"@deepseek-ai/dsh-client-ui-input-trigger",
|
|
69
|
-
"@deepseek-ai/dsh-client-ui-renderer",
|
|
70
|
-
"@deepseek-ai/dsh-client-ui-session",
|
|
71
|
-
"@deepseek-ai/dsh-client-ui-settings",
|
|
72
|
-
"@deepseek-ai/dsh-client-locale",
|
|
73
|
-
"@deepseek-ai/dsh-client-ui-sidebar-right"
|
|
74
|
-
],
|
|
75
|
-
"platform": "web"
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
"dependencies": {
|
|
79
|
-
"@anthropic-ai/claude-agent-sdk": "0.3.247",
|
|
80
|
-
"dompurify": "^3.4.14",
|
|
81
|
-
"marked": "^18.0.11"
|
|
82
|
-
},
|
|
83
|
-
"peerDependencies": {
|
|
84
|
-
"@deepseek-ai/cordis": "^4.0.1",
|
|
85
|
-
"@deepseek-ai/dsh-agent": ">=0.1.5-rc.1",
|
|
86
|
-
"@deepseek-ai/dsh-agent-presets": ">=0.1.5-rc.1",
|
|
87
|
-
"@deepseek-ai/dsh-attachment": ">=0.1.5-rc.1",
|
|
88
|
-
"@deepseek-ai/dsh-brand": ">=0.1.5-rc.1",
|
|
89
|
-
"@deepseek-ai/dsh-client-locale": ">=0.1.5-rc.1",
|
|
90
|
-
"@deepseek-ai/dsh-client-runtime": ">=0.1.1-rc.2",
|
|
91
|
-
"@deepseek-ai/dsh-client-ui-conversation": ">=0.1.5-rc.1",
|
|
92
|
-
"@deepseek-ai/dsh-client-ui-input-trigger": ">=0.1.5-rc.1",
|
|
93
|
-
"@deepseek-ai/dsh-client-ui-primitives": ">=0.1.5-rc.1",
|
|
94
|
-
"@deepseek-ai/dsh-client-ui-settings": ">=0.1.5-rc.1",
|
|
95
|
-
"@deepseek-ai/dsh-client-ui-sidebar-right": ">=0.1.5-rc.1",
|
|
96
|
-
"@deepseek-ai/dsh-client-ui-slots": ">=0.1.5-rc.1",
|
|
97
|
-
"@deepseek-ai/dsh-commands": ">=0.1.5-rc.1",
|
|
98
|
-
"@deepseek-ai/dsh-home-paths": ">=0.1.5-rc.1",
|
|
99
|
-
"@deepseek-ai/dsh-host-webserver": ">=0.1.5-rc.1",
|
|
100
|
-
"@deepseek-ai/dsh-llm": ">=0.1.5-rc.1",
|
|
101
|
-
"@deepseek-ai/dsh-session": ">=0.1.5-rc.1",
|
|
102
|
-
"@deepseek-ai/dsh-subprocess": ">=0.1.5-rc.1",
|
|
103
|
-
"@deepseek-ai/dsh-timeout": ">=0.1.5-rc.1",
|
|
104
|
-
"@deepseek-ai/dsh-tools": ">=0.1.5-rc.1",
|
|
105
|
-
"@deepseek-ai/dsh-user-approval": ">=0.1.5-rc.1",
|
|
106
|
-
"@deepseek-ai/dsh-user-questions": ">=0.1.5-rc.1",
|
|
107
|
-
"@deepseek-ai/schemastery": "^3.18.1",
|
|
108
|
-
"react": "^18.2.0",
|
|
109
|
-
"react-dom": "^18.2.0"
|
|
110
|
-
},
|
|
111
|
-
"devDependencies": {
|
|
112
|
-
"@deepseek-ai/cordis": "4.0.2",
|
|
113
|
-
"@deepseek-ai/dsh-agent": "0.1.5-rc.
|
|
114
|
-
"@deepseek-ai/dsh-agent-default-model": "0.1.5-rc.
|
|
115
|
-
"@deepseek-ai/dsh-agent-presets": "0.1.5-rc.
|
|
116
|
-
"@deepseek-ai/dsh-api-gateway": "0.1.5-rc.
|
|
117
|
-
"@deepseek-ai/dsh-api-remotes": "0.1.5-rc.
|
|
118
|
-
"@deepseek-ai/dsh-api-session-controller": "0.1.5-rc.
|
|
119
|
-
"@deepseek-ai/dsh-api-workspace-controller": "0.1.5-rc.
|
|
120
|
-
"@deepseek-ai/dsh-atomic-write": "0.1.5-rc.
|
|
121
|
-
"@deepseek-ai/dsh-attachment": "0.1.5-rc.
|
|
122
|
-
"@deepseek-ai/dsh-brand": "0.1.5-rc.
|
|
123
|
-
"@deepseek-ai/dsh-client-connection": "0.1.5-rc.
|
|
124
|
-
"@deepseek-ai/dsh-client-locale": "0.1.5-rc.
|
|
125
|
-
"@deepseek-ai/dsh-client-resources": "0.1.5-rc.
|
|
126
|
-
"@deepseek-ai/dsh-client-runtime": "0.1.1-rc.2",
|
|
127
|
-
"@deepseek-ai/dsh-client-store": "0.1.5-rc.
|
|
128
|
-
"@deepseek-ai/dsh-client-ui-chat": "0.1.5-rc.
|
|
129
|
-
"@deepseek-ai/dsh-client-ui-conversation": "0.1.5-rc.
|
|
130
|
-
"@deepseek-ai/dsh-client-ui-input-trigger": "0.1.5-rc.
|
|
131
|
-
"@deepseek-ai/dsh-client-ui-layout": "0.1.5-rc.
|
|
132
|
-
"@deepseek-ai/dsh-client-ui-primitives": "0.1.5-rc.
|
|
133
|
-
"@deepseek-ai/dsh-client-ui-renderer": "0.1.5-rc.
|
|
134
|
-
"@deepseek-ai/dsh-client-ui-session": "0.1.5-rc.
|
|
135
|
-
"@deepseek-ai/dsh-client-ui-settings": "0.1.5-rc.
|
|
136
|
-
"@deepseek-ai/dsh-client-ui-sidebar-right": "0.1.5-rc.
|
|
137
|
-
"@deepseek-ai/dsh-client-ui-slots": "0.1.5-rc.
|
|
138
|
-
"@deepseek-ai/dsh-client-ui-theme": "0.1.5-rc.
|
|
139
|
-
"@deepseek-ai/dsh-code-runtime": "0.1.5-rc.
|
|
140
|
-
"@deepseek-ai/dsh-commands": "0.1.5-rc.
|
|
141
|
-
"@deepseek-ai/dsh-compaction": "0.1.5-rc.
|
|
142
|
-
"@deepseek-ai/dsh-cordis-host-runner": "0.1.5-rc.
|
|
143
|
-
"@deepseek-ai/dsh-credentials": "0.1.5-rc.
|
|
144
|
-
"@deepseek-ai/dsh-deque": "0.1.5-rc.
|
|
145
|
-
"@deepseek-ai/dsh-file-reference": "0.1.5-rc.
|
|
146
|
-
"@deepseek-ai/dsh-fs": "0.1.5-rc.
|
|
147
|
-
"@deepseek-ai/dsh-goal": "0.1.5-rc.
|
|
148
|
-
"@deepseek-ai/dsh-home-paths": "0.1.5-rc.
|
|
149
|
-
"@deepseek-ai/dsh-host-apiproxy": "0.1.1-rc.2",
|
|
150
|
-
"@deepseek-ai/dsh-host-directory-picker": "0.1.5-rc.
|
|
151
|
-
"@deepseek-ai/dsh-host-plugin-inventory": "0.1.5-rc.
|
|
152
|
-
"@deepseek-ai/dsh-host-webserver": "0.1.5-rc.
|
|
153
|
-
"@deepseek-ai/dsh-invariants": "0.1.5-rc.
|
|
154
|
-
"@deepseek-ai/dsh-jobs": "0.1.5-rc.
|
|
155
|
-
"@deepseek-ai/dsh-llm": "0.1.5-rc.
|
|
156
|
-
"@deepseek-ai/dsh-llm-retry": "0.1.5-rc.
|
|
157
|
-
"@deepseek-ai/dsh-message-feedback": "0.1.5-rc.
|
|
158
|
-
"@deepseek-ai/dsh-native-command": "0.1.5-rc.
|
|
159
|
-
"@deepseek-ai/dsh-output-retention": "0.1.5-rc.
|
|
160
|
-
"@deepseek-ai/dsh-permission-presets": "0.1.5-rc.
|
|
161
|
-
"@deepseek-ai/dsh-plan-mode": "0.1.5-rc.
|
|
162
|
-
"@deepseek-ai/dsh-sandbox": "0.1.5-rc.
|
|
163
|
-
"@deepseek-ai/dsh-sandbox-policy": "0.1.5-rc.
|
|
164
|
-
"@deepseek-ai/dsh-scope": "0.1.5-rc.
|
|
165
|
-
"@deepseek-ai/dsh-session": "0.1.5-rc.
|
|
166
|
-
"@deepseek-ai/dsh-session-persistence": "0.1.5-rc.
|
|
167
|
-
"@deepseek-ai/dsh-session-projection": "0.1.5-rc.
|
|
168
|
-
"@deepseek-ai/dsh-session-projection-cache": "0.1.5-rc.
|
|
169
|
-
"@deepseek-ai/dsh-session-query": "0.1.5-rc.
|
|
170
|
-
"@deepseek-ai/dsh-session-reference": "0.1.5-rc.
|
|
171
|
-
"@deepseek-ai/dsh-session-stats": "0.1.5-rc.
|
|
172
|
-
"@deepseek-ai/dsh-session-title": "0.1.5-rc.
|
|
173
|
-
"@deepseek-ai/dsh-settings": "0.1.5-rc.
|
|
174
|
-
"@deepseek-ai/dsh-shell": "0.1.5-rc.
|
|
175
|
-
"@deepseek-ai/dsh-skill": "0.1.5-rc.
|
|
176
|
-
"@deepseek-ai/dsh-storage": "0.1.5-rc.
|
|
177
|
-
"@deepseek-ai/dsh-storage-domain": "0.1.5-rc.
|
|
178
|
-
"@deepseek-ai/dsh-subagent": "0.1.5-rc.
|
|
179
|
-
"@deepseek-ai/dsh-subprocess": "0.1.5-rc.
|
|
180
|
-
"@deepseek-ai/dsh-system-prompt": "0.1.5-rc.
|
|
181
|
-
"@deepseek-ai/dsh-timeout": "0.1.5-rc.
|
|
182
|
-
"@deepseek-ai/dsh-token-meter": "0.1.5-rc.
|
|
183
|
-
"@deepseek-ai/dsh-tool-todo": "0.1.5-rc.
|
|
184
|
-
"@deepseek-ai/dsh-tools": "0.1.5-rc.
|
|
185
|
-
"@deepseek-ai/dsh-typert-protocol": "0.1.5-rc.
|
|
186
|
-
"@deepseek-ai/dsh-typert-registry": "0.1.5-rc.
|
|
187
|
-
"@deepseek-ai/dsh-user-approval": "0.1.5-rc.
|
|
188
|
-
"@deepseek-ai/dsh-user-questions": "0.1.5-rc.
|
|
189
|
-
"@deepseek-ai/dsh-util-time": "0.1.5-rc.
|
|
190
|
-
"@deepseek-ai/dsh-util-values": "0.1.5-rc.
|
|
191
|
-
"@deepseek-ai/dsh-util-workspace-path": "0.1.5-rc.
|
|
192
|
-
"@deepseek-ai/dsh-workspace": "0.1.5-rc.
|
|
193
|
-
"@deepseek-ai/schemastery": "^3.18.2",
|
|
194
|
-
"@shikijs/langs": "^4.4.3",
|
|
195
|
-
"@types/node": "^22.20.1",
|
|
196
|
-
"@types/react": "~18.3.31",
|
|
197
|
-
"@types/react-dom": "~18.3.7",
|
|
198
|
-
"anser": "^2.3.5",
|
|
199
|
-
"clsx": "2.1.1",
|
|
200
|
-
"jsdom": "^30.0.1",
|
|
201
|
-
"katex": "^0.18.7",
|
|
202
|
-
"mdast-util-from-markdown": "^2.0.3",
|
|
203
|
-
"mdast-util-gfm": "^3.1.0",
|
|
204
|
-
"mdast-util-math": "^3.0.0",
|
|
205
|
-
"micromark-core-commonmark": "^2.0.3",
|
|
206
|
-
"micromark-extension-gfm": "^3.0.0",
|
|
207
|
-
"micromark-extension-math": "^3.1.0",
|
|
208
|
-
"micromark-factory-space": "^2.0.1",
|
|
209
|
-
"micromark-util-character": "^2.1.1",
|
|
210
|
-
"micromark-util-classify-character": "^2.0.1",
|
|
211
|
-
"micromark-util-sanitize-uri": "^2.0.1",
|
|
212
|
-
"micromark-util-symbol": "^2.0.1",
|
|
213
|
-
"mime-types": "3.0.2",
|
|
214
|
-
"react": "18.2.0",
|
|
215
|
-
"react-dom": "18.2.0",
|
|
216
|
-
"shiki": "^4.4.3",
|
|
217
|
-
"tsdown": "^0.22.14",
|
|
218
|
-
"typescript": "^5.9.3",
|
|
219
|
-
"vitest": "^4.1.11",
|
|
220
|
-
"zod": "4.4.3"
|
|
221
|
-
}
|
|
222
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@norman-else/dsh-claude",
|
|
3
|
+
"description": "Run the local Claude Code CLI as a first-class main conversation inside DeepSeek Harness",
|
|
4
|
+
"version": "0.1.52",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "lib/index.mjs",
|
|
7
|
+
"types": "lib/index.d.mts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"dsh-claude": "lib/bin.mjs"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsdown",
|
|
13
|
+
"typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.client.json",
|
|
14
|
+
"test": "vitest run",
|
|
15
|
+
"check": "pnpm run typecheck && pnpm run test && pnpm run build",
|
|
16
|
+
"prepack": "pnpm run build",
|
|
17
|
+
"release": "node scripts/publish.mjs",
|
|
18
|
+
"release:check": "node scripts/publish.mjs --dry-run"
|
|
19
|
+
},
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./lib/index.d.mts",
|
|
23
|
+
"default": "./lib/index.mjs"
|
|
24
|
+
},
|
|
25
|
+
"./preset-route": {
|
|
26
|
+
"types": "./lib/preset-route.d.mts",
|
|
27
|
+
"default": "./lib/preset-route.mjs"
|
|
28
|
+
},
|
|
29
|
+
"./client": "./lib/client.js",
|
|
30
|
+
"./package.json": "./package.json"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"lib",
|
|
34
|
+
"preset",
|
|
35
|
+
"legacy-preset",
|
|
36
|
+
"cordis.patch.yml",
|
|
37
|
+
"README.md",
|
|
38
|
+
"INSTALL.md",
|
|
39
|
+
"LICENSE"
|
|
40
|
+
],
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "git+https://github.com/Norman-else/dsh-claude.git"
|
|
45
|
+
},
|
|
46
|
+
"homepage": "https://github.com/Norman-else/dsh-claude#readme",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/Norman-else/dsh-claude/issues"
|
|
49
|
+
},
|
|
50
|
+
"publishConfig": {
|
|
51
|
+
"access": "public"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=20"
|
|
55
|
+
},
|
|
56
|
+
"dsh": {
|
|
57
|
+
"bundle": {
|
|
58
|
+
"patch": "./cordis.patch.yml"
|
|
59
|
+
},
|
|
60
|
+
"client": {
|
|
61
|
+
"inject": [
|
|
62
|
+
"@deepseek-ai/dsh-client-connection",
|
|
63
|
+
"@deepseek-ai/dsh-api-session-controller",
|
|
64
|
+
"@deepseek-ai/dsh-api-workspace-controller",
|
|
65
|
+
"@deepseek-ai/dsh-api-remotes",
|
|
66
|
+
"@deepseek-ai/dsh-client-ui-chat",
|
|
67
|
+
"@deepseek-ai/dsh-client-ui-conversation",
|
|
68
|
+
"@deepseek-ai/dsh-client-ui-input-trigger",
|
|
69
|
+
"@deepseek-ai/dsh-client-ui-renderer",
|
|
70
|
+
"@deepseek-ai/dsh-client-ui-session",
|
|
71
|
+
"@deepseek-ai/dsh-client-ui-settings",
|
|
72
|
+
"@deepseek-ai/dsh-client-locale",
|
|
73
|
+
"@deepseek-ai/dsh-client-ui-sidebar-right"
|
|
74
|
+
],
|
|
75
|
+
"platform": "web"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"dependencies": {
|
|
79
|
+
"@anthropic-ai/claude-agent-sdk": "0.3.247",
|
|
80
|
+
"dompurify": "^3.4.14",
|
|
81
|
+
"marked": "^18.0.11"
|
|
82
|
+
},
|
|
83
|
+
"peerDependencies": {
|
|
84
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
85
|
+
"@deepseek-ai/dsh-agent": ">=0.1.5-rc.1",
|
|
86
|
+
"@deepseek-ai/dsh-agent-presets": ">=0.1.5-rc.1",
|
|
87
|
+
"@deepseek-ai/dsh-attachment": ">=0.1.5-rc.1",
|
|
88
|
+
"@deepseek-ai/dsh-brand": ">=0.1.5-rc.1",
|
|
89
|
+
"@deepseek-ai/dsh-client-locale": ">=0.1.5-rc.1",
|
|
90
|
+
"@deepseek-ai/dsh-client-runtime": ">=0.1.1-rc.2",
|
|
91
|
+
"@deepseek-ai/dsh-client-ui-conversation": ">=0.1.5-rc.1",
|
|
92
|
+
"@deepseek-ai/dsh-client-ui-input-trigger": ">=0.1.5-rc.1",
|
|
93
|
+
"@deepseek-ai/dsh-client-ui-primitives": ">=0.1.5-rc.1",
|
|
94
|
+
"@deepseek-ai/dsh-client-ui-settings": ">=0.1.5-rc.1",
|
|
95
|
+
"@deepseek-ai/dsh-client-ui-sidebar-right": ">=0.1.5-rc.1",
|
|
96
|
+
"@deepseek-ai/dsh-client-ui-slots": ">=0.1.5-rc.1",
|
|
97
|
+
"@deepseek-ai/dsh-commands": ">=0.1.5-rc.1",
|
|
98
|
+
"@deepseek-ai/dsh-home-paths": ">=0.1.5-rc.1",
|
|
99
|
+
"@deepseek-ai/dsh-host-webserver": ">=0.1.5-rc.1",
|
|
100
|
+
"@deepseek-ai/dsh-llm": ">=0.1.5-rc.1",
|
|
101
|
+
"@deepseek-ai/dsh-session": ">=0.1.5-rc.1",
|
|
102
|
+
"@deepseek-ai/dsh-subprocess": ">=0.1.5-rc.1",
|
|
103
|
+
"@deepseek-ai/dsh-timeout": ">=0.1.5-rc.1",
|
|
104
|
+
"@deepseek-ai/dsh-tools": ">=0.1.5-rc.1",
|
|
105
|
+
"@deepseek-ai/dsh-user-approval": ">=0.1.5-rc.1",
|
|
106
|
+
"@deepseek-ai/dsh-user-questions": ">=0.1.5-rc.1",
|
|
107
|
+
"@deepseek-ai/schemastery": "^3.18.1",
|
|
108
|
+
"react": "^18.2.0",
|
|
109
|
+
"react-dom": "^18.2.0"
|
|
110
|
+
},
|
|
111
|
+
"devDependencies": {
|
|
112
|
+
"@deepseek-ai/cordis": "4.0.2",
|
|
113
|
+
"@deepseek-ai/dsh-agent": "0.1.5-rc.2",
|
|
114
|
+
"@deepseek-ai/dsh-agent-default-model": "0.1.5-rc.2",
|
|
115
|
+
"@deepseek-ai/dsh-agent-presets": "0.1.5-rc.2",
|
|
116
|
+
"@deepseek-ai/dsh-api-gateway": "0.1.5-rc.2",
|
|
117
|
+
"@deepseek-ai/dsh-api-remotes": "0.1.5-rc.2",
|
|
118
|
+
"@deepseek-ai/dsh-api-session-controller": "0.1.5-rc.2",
|
|
119
|
+
"@deepseek-ai/dsh-api-workspace-controller": "0.1.5-rc.2",
|
|
120
|
+
"@deepseek-ai/dsh-atomic-write": "0.1.5-rc.2",
|
|
121
|
+
"@deepseek-ai/dsh-attachment": "0.1.5-rc.2",
|
|
122
|
+
"@deepseek-ai/dsh-brand": "0.1.5-rc.2",
|
|
123
|
+
"@deepseek-ai/dsh-client-connection": "0.1.5-rc.2",
|
|
124
|
+
"@deepseek-ai/dsh-client-locale": "0.1.5-rc.2",
|
|
125
|
+
"@deepseek-ai/dsh-client-resources": "0.1.5-rc.2",
|
|
126
|
+
"@deepseek-ai/dsh-client-runtime": "0.1.1-rc.2",
|
|
127
|
+
"@deepseek-ai/dsh-client-store": "0.1.5-rc.2",
|
|
128
|
+
"@deepseek-ai/dsh-client-ui-chat": "0.1.5-rc.2",
|
|
129
|
+
"@deepseek-ai/dsh-client-ui-conversation": "0.1.5-rc.2",
|
|
130
|
+
"@deepseek-ai/dsh-client-ui-input-trigger": "0.1.5-rc.2",
|
|
131
|
+
"@deepseek-ai/dsh-client-ui-layout": "0.1.5-rc.2",
|
|
132
|
+
"@deepseek-ai/dsh-client-ui-primitives": "0.1.5-rc.2",
|
|
133
|
+
"@deepseek-ai/dsh-client-ui-renderer": "0.1.5-rc.2",
|
|
134
|
+
"@deepseek-ai/dsh-client-ui-session": "0.1.5-rc.2",
|
|
135
|
+
"@deepseek-ai/dsh-client-ui-settings": "0.1.5-rc.2",
|
|
136
|
+
"@deepseek-ai/dsh-client-ui-sidebar-right": "0.1.5-rc.2",
|
|
137
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.5-rc.2",
|
|
138
|
+
"@deepseek-ai/dsh-client-ui-theme": "0.1.5-rc.2",
|
|
139
|
+
"@deepseek-ai/dsh-code-runtime": "0.1.5-rc.2",
|
|
140
|
+
"@deepseek-ai/dsh-commands": "0.1.5-rc.2",
|
|
141
|
+
"@deepseek-ai/dsh-compaction": "0.1.5-rc.2",
|
|
142
|
+
"@deepseek-ai/dsh-cordis-host-runner": "0.1.5-rc.2",
|
|
143
|
+
"@deepseek-ai/dsh-credentials": "0.1.5-rc.2",
|
|
144
|
+
"@deepseek-ai/dsh-deque": "0.1.5-rc.2",
|
|
145
|
+
"@deepseek-ai/dsh-file-reference": "0.1.5-rc.2",
|
|
146
|
+
"@deepseek-ai/dsh-fs": "0.1.5-rc.2",
|
|
147
|
+
"@deepseek-ai/dsh-goal": "0.1.5-rc.2",
|
|
148
|
+
"@deepseek-ai/dsh-home-paths": "0.1.5-rc.2",
|
|
149
|
+
"@deepseek-ai/dsh-host-apiproxy": "0.1.1-rc.2",
|
|
150
|
+
"@deepseek-ai/dsh-host-directory-picker": "0.1.5-rc.2",
|
|
151
|
+
"@deepseek-ai/dsh-host-plugin-inventory": "0.1.5-rc.2",
|
|
152
|
+
"@deepseek-ai/dsh-host-webserver": "0.1.5-rc.2",
|
|
153
|
+
"@deepseek-ai/dsh-invariants": "0.1.5-rc.2",
|
|
154
|
+
"@deepseek-ai/dsh-jobs": "0.1.5-rc.2",
|
|
155
|
+
"@deepseek-ai/dsh-llm": "0.1.5-rc.2",
|
|
156
|
+
"@deepseek-ai/dsh-llm-retry": "0.1.5-rc.2",
|
|
157
|
+
"@deepseek-ai/dsh-message-feedback": "0.1.5-rc.2",
|
|
158
|
+
"@deepseek-ai/dsh-native-command": "0.1.5-rc.2",
|
|
159
|
+
"@deepseek-ai/dsh-output-retention": "0.1.5-rc.2",
|
|
160
|
+
"@deepseek-ai/dsh-permission-presets": "0.1.5-rc.2",
|
|
161
|
+
"@deepseek-ai/dsh-plan-mode": "0.1.5-rc.2",
|
|
162
|
+
"@deepseek-ai/dsh-sandbox": "0.1.5-rc.2",
|
|
163
|
+
"@deepseek-ai/dsh-sandbox-policy": "0.1.5-rc.2",
|
|
164
|
+
"@deepseek-ai/dsh-scope": "0.1.5-rc.2",
|
|
165
|
+
"@deepseek-ai/dsh-session": "0.1.5-rc.2",
|
|
166
|
+
"@deepseek-ai/dsh-session-persistence": "0.1.5-rc.2",
|
|
167
|
+
"@deepseek-ai/dsh-session-projection": "0.1.5-rc.2",
|
|
168
|
+
"@deepseek-ai/dsh-session-projection-cache": "0.1.5-rc.2",
|
|
169
|
+
"@deepseek-ai/dsh-session-query": "0.1.5-rc.2",
|
|
170
|
+
"@deepseek-ai/dsh-session-reference": "0.1.5-rc.2",
|
|
171
|
+
"@deepseek-ai/dsh-session-stats": "0.1.5-rc.2",
|
|
172
|
+
"@deepseek-ai/dsh-session-title": "0.1.5-rc.2",
|
|
173
|
+
"@deepseek-ai/dsh-settings": "0.1.5-rc.2",
|
|
174
|
+
"@deepseek-ai/dsh-shell": "0.1.5-rc.2",
|
|
175
|
+
"@deepseek-ai/dsh-skill": "0.1.5-rc.2",
|
|
176
|
+
"@deepseek-ai/dsh-storage": "0.1.5-rc.2",
|
|
177
|
+
"@deepseek-ai/dsh-storage-domain": "0.1.5-rc.2",
|
|
178
|
+
"@deepseek-ai/dsh-subagent": "0.1.5-rc.2",
|
|
179
|
+
"@deepseek-ai/dsh-subprocess": "0.1.5-rc.2",
|
|
180
|
+
"@deepseek-ai/dsh-system-prompt": "0.1.5-rc.2",
|
|
181
|
+
"@deepseek-ai/dsh-timeout": "0.1.5-rc.2",
|
|
182
|
+
"@deepseek-ai/dsh-token-meter": "0.1.5-rc.2",
|
|
183
|
+
"@deepseek-ai/dsh-tool-todo": "0.1.5-rc.2",
|
|
184
|
+
"@deepseek-ai/dsh-tools": "0.1.5-rc.2",
|
|
185
|
+
"@deepseek-ai/dsh-typert-protocol": "0.1.5-rc.2",
|
|
186
|
+
"@deepseek-ai/dsh-typert-registry": "0.1.5-rc.2",
|
|
187
|
+
"@deepseek-ai/dsh-user-approval": "0.1.5-rc.2",
|
|
188
|
+
"@deepseek-ai/dsh-user-questions": "0.1.5-rc.2",
|
|
189
|
+
"@deepseek-ai/dsh-util-time": "0.1.5-rc.2",
|
|
190
|
+
"@deepseek-ai/dsh-util-values": "0.1.5-rc.2",
|
|
191
|
+
"@deepseek-ai/dsh-util-workspace-path": "0.1.5-rc.2",
|
|
192
|
+
"@deepseek-ai/dsh-workspace": "0.1.5-rc.2",
|
|
193
|
+
"@deepseek-ai/schemastery": "^3.18.2",
|
|
194
|
+
"@shikijs/langs": "^4.4.3",
|
|
195
|
+
"@types/node": "^22.20.1",
|
|
196
|
+
"@types/react": "~18.3.31",
|
|
197
|
+
"@types/react-dom": "~18.3.7",
|
|
198
|
+
"anser": "^2.3.5",
|
|
199
|
+
"clsx": "2.1.1",
|
|
200
|
+
"jsdom": "^30.0.1",
|
|
201
|
+
"katex": "^0.18.7",
|
|
202
|
+
"mdast-util-from-markdown": "^2.0.3",
|
|
203
|
+
"mdast-util-gfm": "^3.1.0",
|
|
204
|
+
"mdast-util-math": "^3.0.0",
|
|
205
|
+
"micromark-core-commonmark": "^2.0.3",
|
|
206
|
+
"micromark-extension-gfm": "^3.0.0",
|
|
207
|
+
"micromark-extension-math": "^3.1.0",
|
|
208
|
+
"micromark-factory-space": "^2.0.1",
|
|
209
|
+
"micromark-util-character": "^2.1.1",
|
|
210
|
+
"micromark-util-classify-character": "^2.0.1",
|
|
211
|
+
"micromark-util-sanitize-uri": "^2.0.1",
|
|
212
|
+
"micromark-util-symbol": "^2.0.1",
|
|
213
|
+
"mime-types": "3.0.2",
|
|
214
|
+
"react": "18.2.0",
|
|
215
|
+
"react-dom": "18.2.0",
|
|
216
|
+
"shiki": "^4.4.3",
|
|
217
|
+
"tsdown": "^0.22.14",
|
|
218
|
+
"typescript": "^5.9.3",
|
|
219
|
+
"vitest": "^4.1.11",
|
|
220
|
+
"zod": "4.4.3"
|
|
221
|
+
}
|
|
222
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
# Shipped by dsh-claude. Claude Code owns the inner agent loop and tools;
|
|
2
|
-
# this system preset contributes only the request-route override. DSH resolves
|
|
3
|
-
# the bare package specifier from the host profile when mounting system roots.
|
|
4
|
-
- id: claude-code-route
|
|
5
|
-
name: '@norman-else/dsh-claude/preset-route'
|
|
6
|
-
# Entry-local isolate realm: each session's preset mount gets its own
|
|
7
|
-
# claudeCommands service instance (keeps mountPreset's leaked-service check
|
|
8
|
-
# happy and prevents cross-session collisions). The host reads it through
|
|
9
|
-
# dsh-agent-presets' serviceForAgent().
|
|
10
|
-
isolate:
|
|
11
|
-
claudeCommands: true
|
|
1
|
+
# Shipped by dsh-claude. Claude Code owns the inner agent loop and tools;
|
|
2
|
+
# this system preset contributes only the request-route override. DSH resolves
|
|
3
|
+
# the bare package specifier from the host profile when mounting system roots.
|
|
4
|
+
- id: claude-code-route
|
|
5
|
+
name: '@norman-else/dsh-claude/preset-route'
|
|
6
|
+
# Entry-local isolate realm: each session's preset mount gets its own
|
|
7
|
+
# claudeCommands service instance (keeps mountPreset's leaked-service check
|
|
8
|
+
# happy and prevents cross-session collisions). The host reads it through
|
|
9
|
+
# dsh-agent-presets' serviceForAgent().
|
|
10
|
+
isolate:
|
|
11
|
+
claudeCommands: true
|
package/preset/claude/preset.yml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Shipped by dsh-claude. Copy this system preset under a new id to customize it.
|
|
2
|
-
name: Claude
|
|
3
|
-
description: Use the local Claude Code as the complete agent runtime inside DSH.
|
|
4
|
-
order: 10
|
|
1
|
+
# Shipped by dsh-claude. Copy this system preset under a new id to customize it.
|
|
2
|
+
name: Claude
|
|
3
|
+
description: Use the local Claude Code as the complete agent runtime inside DSH.
|
|
4
|
+
order: 10
|