@norman-else/dsh-claude 0.1.45 → 0.1.46

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/package.json CHANGED
@@ -1,197 +1,197 @@
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.45",
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
- ],
74
- "platform": "web"
75
- }
76
- },
77
- "dependencies": {
78
- "@anthropic-ai/claude-agent-sdk": "0.3.247",
79
- "dompurify": "^3.4.14",
80
- "marked": "^18.0.11"
81
- },
82
- "peerDependencies": {
83
- "@deepseek-ai/cordis": "^4.0.1",
84
- "@deepseek-ai/dsh-agent": ">=0.1.2-rc.1",
85
- "@deepseek-ai/dsh-agent-presets": ">=0.1.2-rc.1",
86
- "@deepseek-ai/dsh-attachment": ">=0.1.2-rc.1",
87
- "@deepseek-ai/dsh-brand": ">=0.1.2-rc.1",
88
- "@deepseek-ai/dsh-client-locale": ">=0.1.2-rc.1",
89
- "@deepseek-ai/dsh-client-runtime": ">=0.1.1-rc.2",
90
- "@deepseek-ai/dsh-client-ui-conversation": ">=0.1.2-rc.1",
91
- "@deepseek-ai/dsh-client-ui-input-trigger": ">=0.1.2-rc.1",
92
- "@deepseek-ai/dsh-client-ui-primitives": ">=0.1.2-rc.1",
93
- "@deepseek-ai/dsh-client-ui-settings": ">=0.1.2-rc.1",
94
- "@deepseek-ai/dsh-client-ui-slots": ">=0.1.2-rc.1",
95
- "@deepseek-ai/dsh-commands": ">=0.1.2-rc.1",
96
- "@deepseek-ai/dsh-home-paths": ">=0.1.2-rc.1",
97
- "@deepseek-ai/dsh-host-webserver": ">=0.1.2-rc.1",
98
- "@deepseek-ai/dsh-llm": ">=0.1.2-rc.1",
99
- "@deepseek-ai/dsh-session": ">=0.1.2-rc.1",
100
- "@deepseek-ai/dsh-subprocess": ">=0.1.2-rc.1",
101
- "@deepseek-ai/dsh-timeout": ">=0.1.2-rc.1",
102
- "@deepseek-ai/dsh-tools": ">=0.1.2-rc.1",
103
- "@deepseek-ai/dsh-user-approval": ">=0.1.2-rc.1",
104
- "@deepseek-ai/dsh-user-questions": ">=0.1.2-rc.1",
105
- "@deepseek-ai/schemastery": "^3.18.1",
106
- "react": "^18.2.0",
107
- "react-dom": "^18.2.0"
108
- },
109
- "devDependencies": {
110
- "@deepseek-ai/cordis": "4.0.2",
111
- "@deepseek-ai/dsh-agent": "0.1.2-rc.1",
112
- "@deepseek-ai/dsh-agent-default-model": "0.1.2-rc.1",
113
- "@deepseek-ai/dsh-agent-presets": "0.1.2-rc.1",
114
- "@deepseek-ai/dsh-api-gateway": "0.1.2-rc.1",
115
- "@deepseek-ai/dsh-api-remotes": "0.1.2-rc.1",
116
- "@deepseek-ai/dsh-api-session-controller": "0.1.2-rc.1",
117
- "@deepseek-ai/dsh-api-workspace-controller": "0.1.2-rc.1",
118
- "@deepseek-ai/dsh-atomic-write": "0.1.2-rc.1",
119
- "@deepseek-ai/dsh-attachment": "0.1.2-rc.1",
120
- "@deepseek-ai/dsh-brand": "0.1.2-rc.1",
121
- "@deepseek-ai/dsh-client-connection": "0.1.2-rc.1",
122
- "@deepseek-ai/dsh-client-locale": "0.1.2-rc.1",
123
- "@deepseek-ai/dsh-client-runtime": "0.1.1-rc.2",
124
- "@deepseek-ai/dsh-client-store": "0.1.2-rc.1",
125
- "@deepseek-ai/dsh-client-ui-chat": "0.1.2-rc.1",
126
- "@deepseek-ai/dsh-client-ui-conversation": "0.1.2-rc.1",
127
- "@deepseek-ai/dsh-client-ui-input-trigger": "0.1.2-rc.1",
128
- "@deepseek-ai/dsh-client-ui-layout": "0.1.2-rc.1",
129
- "@deepseek-ai/dsh-client-ui-primitives": "0.1.2-rc.1",
130
- "@deepseek-ai/dsh-client-ui-renderer": "0.1.2-rc.1",
131
- "@deepseek-ai/dsh-client-ui-session": "0.1.2-rc.1",
132
- "@deepseek-ai/dsh-client-ui-settings": "0.1.2-rc.1",
133
- "@deepseek-ai/dsh-client-ui-slots": "0.1.2-rc.1",
134
- "@deepseek-ai/dsh-client-ui-theme": "0.1.2-rc.1",
135
- "@deepseek-ai/dsh-code-runtime": "0.1.2-rc.1",
136
- "@deepseek-ai/dsh-commands": "0.1.2-rc.1",
137
- "@deepseek-ai/dsh-compaction": "0.1.2-rc.1",
138
- "@deepseek-ai/dsh-cordis-host-runner": "0.1.2-rc.1",
139
- "@deepseek-ai/dsh-credentials": "0.1.2-rc.1",
140
- "@deepseek-ai/dsh-file-reference": "0.1.2-rc.1",
141
- "@deepseek-ai/dsh-goal": "0.1.2-rc.1",
142
- "@deepseek-ai/dsh-home-paths": "0.1.2-rc.1",
143
- "@deepseek-ai/dsh-host-apiproxy": "0.1.1-rc.2",
144
- "@deepseek-ai/dsh-host-directory-picker": "0.1.2-rc.1",
145
- "@deepseek-ai/dsh-host-plugin-inventory": "0.1.2-rc.1",
146
- "@deepseek-ai/dsh-host-webserver": "0.1.2-rc.1",
147
- "@deepseek-ai/dsh-invariants": "0.1.2-rc.1",
148
- "@deepseek-ai/dsh-jobs": "0.1.2-rc.1",
149
- "@deepseek-ai/dsh-llm": "0.1.2-rc.1",
150
- "@deepseek-ai/dsh-llm-retry": "0.1.2-rc.1",
151
- "@deepseek-ai/dsh-message-feedback": "0.1.2-rc.1",
152
- "@deepseek-ai/dsh-native-command": "0.1.2-rc.1",
153
- "@deepseek-ai/dsh-output-retention": "0.1.2-rc.1",
154
- "@deepseek-ai/dsh-permission-presets": "0.1.2-rc.1",
155
- "@deepseek-ai/dsh-plan-mode": "0.1.2-rc.1",
156
- "@deepseek-ai/dsh-sandbox": "0.1.2-rc.1",
157
- "@deepseek-ai/dsh-sandbox-policy": "0.1.2-rc.1",
158
- "@deepseek-ai/dsh-scope": "0.1.2-rc.1",
159
- "@deepseek-ai/dsh-session": "0.1.2-rc.1",
160
- "@deepseek-ai/dsh-session-persistence": "0.1.2-rc.1",
161
- "@deepseek-ai/dsh-session-projection": "0.1.2-rc.1",
162
- "@deepseek-ai/dsh-session-projection-cache": "0.1.2-rc.1",
163
- "@deepseek-ai/dsh-session-query": "0.1.2-rc.1",
164
- "@deepseek-ai/dsh-session-reference": "0.1.2-rc.1",
165
- "@deepseek-ai/dsh-session-stats": "0.1.2-rc.1",
166
- "@deepseek-ai/dsh-session-title": "0.1.2-rc.1",
167
- "@deepseek-ai/dsh-settings": "0.1.2-rc.1",
168
- "@deepseek-ai/dsh-shell": "0.1.2-rc.1",
169
- "@deepseek-ai/dsh-skill": "0.1.2-rc.1",
170
- "@deepseek-ai/dsh-storage": "0.1.2-rc.1",
171
- "@deepseek-ai/dsh-storage-domain": "0.1.2-rc.1",
172
- "@deepseek-ai/dsh-subagent": "0.1.2-rc.1",
173
- "@deepseek-ai/dsh-subprocess": "0.1.2-rc.1",
174
- "@deepseek-ai/dsh-system-prompt": "0.1.2-rc.1",
175
- "@deepseek-ai/dsh-timeout": "0.1.2-rc.1",
176
- "@deepseek-ai/dsh-token-meter": "0.1.2-rc.1",
177
- "@deepseek-ai/dsh-tool-todo": "0.1.2-rc.1",
178
- "@deepseek-ai/dsh-tools": "0.1.2-rc.1",
179
- "@deepseek-ai/dsh-typert-protocol": "0.1.2-rc.1",
180
- "@deepseek-ai/dsh-typert-registry": "0.1.2-rc.1",
181
- "@deepseek-ai/dsh-user-approval": "0.1.2-rc.1",
182
- "@deepseek-ai/dsh-user-questions": "0.1.2-rc.1",
183
- "@deepseek-ai/dsh-util-time": "0.1.2-rc.1",
184
- "@deepseek-ai/dsh-util-workspace-path": "0.1.2-rc.1",
185
- "@deepseek-ai/dsh-workspace": "0.1.2-rc.1",
186
- "@deepseek-ai/schemastery": "^3.18.2",
187
- "@types/node": "^22.20.1",
188
- "@types/react": "~18.3.31",
189
- "@types/react-dom": "~18.3.7",
190
- "jsdom": "^30.0.1",
191
- "react": "18.2.0",
192
- "react-dom": "18.2.0",
193
- "tsdown": "^0.22.14",
194
- "typescript": "^5.9.3",
195
- "vitest": "^4.1.11"
196
- }
197
- }
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.46",
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
+ ],
74
+ "platform": "web"
75
+ }
76
+ },
77
+ "dependencies": {
78
+ "@anthropic-ai/claude-agent-sdk": "0.3.247",
79
+ "dompurify": "^3.4.14",
80
+ "marked": "^18.0.11"
81
+ },
82
+ "peerDependencies": {
83
+ "@deepseek-ai/cordis": "^4.0.1",
84
+ "@deepseek-ai/dsh-agent": ">=0.1.2-rc.1",
85
+ "@deepseek-ai/dsh-agent-presets": ">=0.1.2-rc.1",
86
+ "@deepseek-ai/dsh-attachment": ">=0.1.2-rc.1",
87
+ "@deepseek-ai/dsh-brand": ">=0.1.2-rc.1",
88
+ "@deepseek-ai/dsh-client-locale": ">=0.1.2-rc.1",
89
+ "@deepseek-ai/dsh-client-runtime": ">=0.1.1-rc.2",
90
+ "@deepseek-ai/dsh-client-ui-conversation": ">=0.1.2-rc.1",
91
+ "@deepseek-ai/dsh-client-ui-input-trigger": ">=0.1.2-rc.1",
92
+ "@deepseek-ai/dsh-client-ui-primitives": ">=0.1.2-rc.1",
93
+ "@deepseek-ai/dsh-client-ui-settings": ">=0.1.2-rc.1",
94
+ "@deepseek-ai/dsh-client-ui-slots": ">=0.1.2-rc.1",
95
+ "@deepseek-ai/dsh-commands": ">=0.1.2-rc.1",
96
+ "@deepseek-ai/dsh-home-paths": ">=0.1.2-rc.1",
97
+ "@deepseek-ai/dsh-host-webserver": ">=0.1.2-rc.1",
98
+ "@deepseek-ai/dsh-llm": ">=0.1.2-rc.1",
99
+ "@deepseek-ai/dsh-session": ">=0.1.2-rc.1",
100
+ "@deepseek-ai/dsh-subprocess": ">=0.1.2-rc.1",
101
+ "@deepseek-ai/dsh-timeout": ">=0.1.2-rc.1",
102
+ "@deepseek-ai/dsh-tools": ">=0.1.2-rc.1",
103
+ "@deepseek-ai/dsh-user-approval": ">=0.1.2-rc.1",
104
+ "@deepseek-ai/dsh-user-questions": ">=0.1.2-rc.1",
105
+ "@deepseek-ai/schemastery": "^3.18.1",
106
+ "react": "^18.2.0",
107
+ "react-dom": "^18.2.0"
108
+ },
109
+ "devDependencies": {
110
+ "@deepseek-ai/cordis": "4.0.2",
111
+ "@deepseek-ai/dsh-agent": "0.1.2-rc.1",
112
+ "@deepseek-ai/dsh-agent-default-model": "0.1.2-rc.1",
113
+ "@deepseek-ai/dsh-agent-presets": "0.1.2-rc.1",
114
+ "@deepseek-ai/dsh-api-gateway": "0.1.2-rc.1",
115
+ "@deepseek-ai/dsh-api-remotes": "0.1.2-rc.1",
116
+ "@deepseek-ai/dsh-api-session-controller": "0.1.2-rc.1",
117
+ "@deepseek-ai/dsh-api-workspace-controller": "0.1.2-rc.1",
118
+ "@deepseek-ai/dsh-atomic-write": "0.1.2-rc.1",
119
+ "@deepseek-ai/dsh-attachment": "0.1.2-rc.1",
120
+ "@deepseek-ai/dsh-brand": "0.1.2-rc.1",
121
+ "@deepseek-ai/dsh-client-connection": "0.1.2-rc.1",
122
+ "@deepseek-ai/dsh-client-locale": "0.1.2-rc.1",
123
+ "@deepseek-ai/dsh-client-runtime": "0.1.1-rc.2",
124
+ "@deepseek-ai/dsh-client-store": "0.1.2-rc.1",
125
+ "@deepseek-ai/dsh-client-ui-chat": "0.1.2-rc.1",
126
+ "@deepseek-ai/dsh-client-ui-conversation": "0.1.2-rc.1",
127
+ "@deepseek-ai/dsh-client-ui-input-trigger": "0.1.2-rc.1",
128
+ "@deepseek-ai/dsh-client-ui-layout": "0.1.2-rc.1",
129
+ "@deepseek-ai/dsh-client-ui-primitives": "0.1.2-rc.1",
130
+ "@deepseek-ai/dsh-client-ui-renderer": "0.1.2-rc.1",
131
+ "@deepseek-ai/dsh-client-ui-session": "0.1.2-rc.1",
132
+ "@deepseek-ai/dsh-client-ui-settings": "0.1.2-rc.1",
133
+ "@deepseek-ai/dsh-client-ui-slots": "0.1.2-rc.1",
134
+ "@deepseek-ai/dsh-client-ui-theme": "0.1.2-rc.1",
135
+ "@deepseek-ai/dsh-code-runtime": "0.1.2-rc.1",
136
+ "@deepseek-ai/dsh-commands": "0.1.2-rc.1",
137
+ "@deepseek-ai/dsh-compaction": "0.1.2-rc.1",
138
+ "@deepseek-ai/dsh-cordis-host-runner": "0.1.2-rc.1",
139
+ "@deepseek-ai/dsh-credentials": "0.1.2-rc.1",
140
+ "@deepseek-ai/dsh-file-reference": "0.1.2-rc.1",
141
+ "@deepseek-ai/dsh-goal": "0.1.2-rc.1",
142
+ "@deepseek-ai/dsh-home-paths": "0.1.2-rc.1",
143
+ "@deepseek-ai/dsh-host-apiproxy": "0.1.1-rc.2",
144
+ "@deepseek-ai/dsh-host-directory-picker": "0.1.2-rc.1",
145
+ "@deepseek-ai/dsh-host-plugin-inventory": "0.1.2-rc.1",
146
+ "@deepseek-ai/dsh-host-webserver": "0.1.2-rc.1",
147
+ "@deepseek-ai/dsh-invariants": "0.1.2-rc.1",
148
+ "@deepseek-ai/dsh-jobs": "0.1.2-rc.1",
149
+ "@deepseek-ai/dsh-llm": "0.1.2-rc.1",
150
+ "@deepseek-ai/dsh-llm-retry": "0.1.2-rc.1",
151
+ "@deepseek-ai/dsh-message-feedback": "0.1.2-rc.1",
152
+ "@deepseek-ai/dsh-native-command": "0.1.2-rc.1",
153
+ "@deepseek-ai/dsh-output-retention": "0.1.2-rc.1",
154
+ "@deepseek-ai/dsh-permission-presets": "0.1.2-rc.1",
155
+ "@deepseek-ai/dsh-plan-mode": "0.1.2-rc.1",
156
+ "@deepseek-ai/dsh-sandbox": "0.1.2-rc.1",
157
+ "@deepseek-ai/dsh-sandbox-policy": "0.1.2-rc.1",
158
+ "@deepseek-ai/dsh-scope": "0.1.2-rc.1",
159
+ "@deepseek-ai/dsh-session": "0.1.2-rc.1",
160
+ "@deepseek-ai/dsh-session-persistence": "0.1.2-rc.1",
161
+ "@deepseek-ai/dsh-session-projection": "0.1.2-rc.1",
162
+ "@deepseek-ai/dsh-session-projection-cache": "0.1.2-rc.1",
163
+ "@deepseek-ai/dsh-session-query": "0.1.2-rc.1",
164
+ "@deepseek-ai/dsh-session-reference": "0.1.2-rc.1",
165
+ "@deepseek-ai/dsh-session-stats": "0.1.2-rc.1",
166
+ "@deepseek-ai/dsh-session-title": "0.1.2-rc.1",
167
+ "@deepseek-ai/dsh-settings": "0.1.2-rc.1",
168
+ "@deepseek-ai/dsh-shell": "0.1.2-rc.1",
169
+ "@deepseek-ai/dsh-skill": "0.1.2-rc.1",
170
+ "@deepseek-ai/dsh-storage": "0.1.2-rc.1",
171
+ "@deepseek-ai/dsh-storage-domain": "0.1.2-rc.1",
172
+ "@deepseek-ai/dsh-subagent": "0.1.2-rc.1",
173
+ "@deepseek-ai/dsh-subprocess": "0.1.2-rc.1",
174
+ "@deepseek-ai/dsh-system-prompt": "0.1.2-rc.1",
175
+ "@deepseek-ai/dsh-timeout": "0.1.2-rc.1",
176
+ "@deepseek-ai/dsh-token-meter": "0.1.2-rc.1",
177
+ "@deepseek-ai/dsh-tool-todo": "0.1.2-rc.1",
178
+ "@deepseek-ai/dsh-tools": "0.1.2-rc.1",
179
+ "@deepseek-ai/dsh-typert-protocol": "0.1.2-rc.1",
180
+ "@deepseek-ai/dsh-typert-registry": "0.1.2-rc.1",
181
+ "@deepseek-ai/dsh-user-approval": "0.1.2-rc.1",
182
+ "@deepseek-ai/dsh-user-questions": "0.1.2-rc.1",
183
+ "@deepseek-ai/dsh-util-time": "0.1.2-rc.1",
184
+ "@deepseek-ai/dsh-util-workspace-path": "0.1.2-rc.1",
185
+ "@deepseek-ai/dsh-workspace": "0.1.2-rc.1",
186
+ "@deepseek-ai/schemastery": "^3.18.2",
187
+ "@types/node": "^22.20.1",
188
+ "@types/react": "~18.3.31",
189
+ "@types/react-dom": "~18.3.7",
190
+ "jsdom": "^30.0.1",
191
+ "react": "18.2.0",
192
+ "react-dom": "18.2.0",
193
+ "tsdown": "^0.22.14",
194
+ "typescript": "^5.9.3",
195
+ "vitest": "^4.1.11"
196
+ }
197
+ }
@@ -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
@@ -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