@deepseek-ai/dsh 0.1.2-rc.1 → 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/lib/bin.js CHANGED
@@ -123,29 +123,36 @@ function readVersion() {
123
123
  const manifest = JSON.parse(readFileSync(fileURLToPath(new URL("../package.json", import.meta.url)), "utf8"));
124
124
  return typeof manifest.version === "string" ? manifest.version : "0.0.0";
125
125
  }
126
- const invocation = parseDshArgs(process.argv.slice(2), readVersion());
127
- switch (invocation.mode) {
128
- case "profile": {
129
- const { runProfile } = await import("./profile-boot-x7_BzdeW.js");
130
- await runProfile({
131
- environment: loadLayeredEnv("dsh"),
132
- profile: invocation.profile,
133
- patchFiles: invocation.patches,
134
- args: invocation.args
135
- });
136
- break;
137
- }
138
- case "plugin": {
139
- const { runPlugin } = await import("./plugin-F7ZVfRyo.js");
140
- process.exit(runPlugin(invocation.profile, invocation.args));
141
- break;
142
- }
143
- case "dump-config": {
144
- const { runDumpConfig } = await import("./dump-config-BNQ_bV66.js");
145
- runDumpConfig(invocation.profile, invocation.defaultOnly, invocation.patches);
146
- break;
126
+ /**
127
+ * Run the public dsh command-line interface.
128
+ * @returns a promise that settles when the selected command mode finishes.
129
+ */
130
+ async function runCli() {
131
+ const invocation = parseDshArgs(process.argv.slice(2), readVersion());
132
+ switch (invocation.mode) {
133
+ case "profile": {
134
+ const { runProfile } = await import("./profile-boot-CMEGRIuU.js");
135
+ await runProfile({
136
+ environment: loadLayeredEnv("dsh"),
137
+ profile: invocation.profile,
138
+ patchFiles: invocation.patches,
139
+ args: invocation.args
140
+ });
141
+ break;
142
+ }
143
+ case "plugin": {
144
+ const { runPlugin } = await import("./plugin-WDISvmGc.js");
145
+ process.exit(runPlugin(invocation.profile, invocation.args));
146
+ break;
147
+ }
148
+ case "dump-config": {
149
+ const { runDumpConfig } = await import("./dump-config-oo1v7itl.js");
150
+ runDumpConfig(invocation.profile, invocation.defaultOnly, invocation.patches);
151
+ break;
152
+ }
153
+ default: throw new Error(`dsh: unhandled invocation mode ${JSON.stringify(invocation)}`);
147
154
  }
148
- default: throw new Error(`dsh: unhandled invocation mode ${JSON.stringify(invocation)}`);
149
155
  }
156
+ if (import.meta.main) await runCli();
150
157
  //#endregion
151
- export {};
158
+ export { runCli };
@@ -1,4 +1,4 @@
1
- import { i as prepareProfile, n as PROFILE_ROOT_FILENAME, r as homePatchPath } from "./profile-boot-BTzzdrGY.js";
1
+ import { i as prepareProfile, n as PROFILE_ROOT_FILENAME, r as homePatchPath } from "./profile-boot-BBDiUnZs.js";
2
2
  import { existsSync } from "node:fs";
3
3
  import { loadOptionalPatches, loadOverlayPatches, renderConfigDump } from "@deepseek-ai/dsh-app-boot";
4
4
  import { join, resolve } from "node:path";
@@ -1,4 +1,4 @@
1
- import { t as INSTALL_ANCHOR } from "./profile-boot-BTzzdrGY.js";
1
+ import { t as INSTALL_ANCHOR } from "./profile-boot-BBDiUnZs.js";
2
2
  import { existsSync } from "node:fs";
3
3
  import { DEFAULT_PROFILE_BUNDLES, PROFILE_TEMPLATES, initProfile, readProfileManifest, resolveBundleDir, resolveProfileDir, writeProfileManifest } from "@deepseek-ai/dsh-app-boot";
4
4
  import { join, resolve } from "node:path";
@@ -3,6 +3,7 @@ import { fileURLToPath } from "node:url";
3
3
  import { PROFILE_PATCH_FILENAME, boot, composeEntries, healProfilesModuleFallback, installFailLoud, loadOptionalPatches, loadOverlayPatches, loadProfile, watchUserPatches } from "@deepseek-ai/dsh-app-boot";
4
4
  import { join, resolve } from "node:path";
5
5
  import { resolveDshHome } from "@deepseek-ai/dsh-home-paths";
6
+ import { installProxyFromEnvironment } from "@deepseek-ai/dsh-http-proxy";
6
7
  import { DSH_LAUNCH_ENVIRONMENT_KEY } from "@deepseek-ai/dsh-launch-environment";
7
8
  import { provideCmdline } from "@deepseek-ai/dsh-cmdline";
8
9
  //#region lib/types/process-shutdown.js
@@ -231,11 +232,15 @@ function suppressShutdownError(ctx, signal, error) {
231
232
  * @returns the settled root context and the shutdown controller.
232
233
  */
233
234
  async function runProfile(options) {
235
+ const disposeProxy = await installProxyFromEnvironment(options.environment, (message) => {
236
+ process.stderr.write(`${NAME}: ${message}\n`);
237
+ });
234
238
  const composed = await composeProfile(options.profile, options.patchFiles);
235
239
  const app = {};
236
240
  const appReady = createAppReady();
237
241
  const shutdown = createProcessShutdown(async () => {
238
242
  await app.current?.fiber.dispose();
243
+ await disposeProxy();
239
244
  });
240
245
  const signalShutdown = new AbortController();
241
246
  const interrupt = (code) => {
@@ -0,0 +1,2 @@
1
+ import { o as runProfile } from "./profile-boot-BBDiUnZs.js";
2
+ export { runProfile };
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.2-rc.1",
4
+ "version": "0.1.3-alpha.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -31,73 +31,74 @@
31
31
  "commander": "^15.0.0",
32
32
  "js-yaml": "^4.2.0",
33
33
  "node-addon-require-builtin": "^0.1.4",
34
- "@deepseek-ai/cordis": "^4.0.2",
35
34
  "@deepseek-ai/cordis-plugin-hmr": "^1.0.17",
36
35
  "@deepseek-ai/cordis-plugin-include": "^1.0.7",
37
- "@deepseek-ai/cordis-plugin-timer": "^1.1.4",
38
- "@deepseek-ai/dsh-acp-app": "^0.1.2-rc.1",
39
36
  "@deepseek-ai/cordis-plugin-loader": "^1.0.3",
40
- "@deepseek-ai/dsh-agent-tool-presentation": "^0.1.2-rc.1",
41
- "@deepseek-ai/dsh-agent-instructions": "^0.1.2-rc.1",
42
- "@deepseek-ai/dsh-app-boot": "^0.1.2-rc.1",
43
- "@deepseek-ai/dsh-base": "^0.1.2-rc.1",
44
- "@deepseek-ai/dsh-client-ui-agent-preset": "^0.1.2-rc.1",
45
- "@deepseek-ai/dsh-client-ui-cordis": "^0.1.2-rc.1",
46
- "@deepseek-ai/dsh-cmdline": "^0.1.2-rc.1",
47
- "@deepseek-ai/dsh-command-compact": "^0.1.2-rc.1",
48
- "@deepseek-ai/dsh-command-goal": "^0.1.2-rc.1",
49
- "@deepseek-ai/dsh-compaction-basic": "^0.1.2-rc.1",
50
- "@deepseek-ai/dsh-compaction-tool-result-pruner": "^0.1.2-rc.1",
51
- "@deepseek-ai/dsh-cordis-client-runner": "^0.1.2-rc.1",
52
- "@deepseek-ai/dsh-fs-local": "^0.1.2-rc.1",
53
- "@deepseek-ai/dsh-goal": "^0.1.2-rc.1",
54
- "@deepseek-ai/dsh-goal-round-driver": "^0.1.2-rc.1",
55
- "@deepseek-ai/dsh-headless": "^0.1.2-rc.1",
56
- "@deepseek-ai/dsh-home-paths": "^0.1.2-rc.1",
57
- "@deepseek-ai/dsh-hooks-claude-code": "^0.1.2-rc.1",
58
- "@deepseek-ai/dsh-hooks-codex": "^0.1.2-rc.1",
59
- "@deepseek-ai/dsh-jobs-local": "^0.1.2-rc.1",
60
- "@deepseek-ai/dsh-launch-environment": "^0.1.2-rc.1",
61
- "@deepseek-ai/dsh-mcp-client": "^0.1.2-rc.1",
62
- "@deepseek-ai/dsh-persona": "^0.1.2-rc.1",
63
- "@deepseek-ai/dsh-plan-mode": "^0.1.2-rc.1",
64
- "@deepseek-ai/dsh-pwsh-local": "^0.1.2-rc.1",
65
- "@deepseek-ai/dsh-pwsh-sandbox": "^0.1.2-rc.1",
66
- "@deepseek-ai/dsh-sdk-app": "^0.1.2-rc.1",
67
- "@deepseek-ai/dsh-sdk-minimal": "^0.1.2-rc.1",
68
- "@deepseek-ai/dsh-session-projection": "^0.1.2-rc.1",
69
- "@deepseek-ai/dsh-session-reference": "^0.1.2-rc.1",
70
- "@deepseek-ai/dsh-skill": "^0.1.2-rc.1",
71
- "@deepseek-ai/dsh-terminal": "^0.1.2-rc.1",
72
- "@deepseek-ai/dsh-terminal-bash": "^0.1.2-rc.1",
73
- "@deepseek-ai/dsh-time-context": "^0.1.2-rc.1",
74
- "@deepseek-ai/dsh-tmux-context": "^0.1.2-rc.1",
75
- "@deepseek-ai/dsh-token-meter": "^0.1.2-rc.1",
76
- "@deepseek-ai/dsh-tool-ask-user": "^0.1.2-rc.1",
77
- "@deepseek-ai/dsh-schedule": "^0.1.2-rc.1",
78
- "@deepseek-ai/dsh-tool-bash-persistent": "^0.1.2-rc.1",
79
- "@deepseek-ai/dsh-tool-cordis": "^0.1.2-rc.1",
80
- "@deepseek-ai/dsh-tool-fs": "^0.1.2-rc.1",
81
- "@deepseek-ai/dsh-tool-fs-search": "^0.1.2-rc.1",
82
- "@deepseek-ai/dsh-tool-goal": "^0.1.2-rc.1",
83
- "@deepseek-ai/dsh-tool-jobs": "^0.1.2-rc.1",
84
- "@deepseek-ai/dsh-tool-pwsh": "^0.1.2-rc.1",
85
- "@deepseek-ai/dsh-tool-bash": "^0.1.2-rc.1",
86
- "@deepseek-ai/dsh-tool-pwsh-persistent": "^0.1.2-rc.1",
87
- "@deepseek-ai/dsh-tool-ralph": "^0.1.2-rc.1",
88
- "@deepseek-ai/dsh-tool-skill": "^0.1.2-rc.1",
89
- "@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.2-rc.1",
90
- "@deepseek-ai/dsh-tool-subagent": "^0.1.2-rc.1",
91
- "@deepseek-ai/dsh-tool-subagent-control": "^0.1.2-rc.1",
92
- "@deepseek-ai/dsh-tool-todo": "^0.1.2-rc.1",
93
- "@deepseek-ai/dsh-tool-web": "^0.1.2-rc.1",
94
- "@deepseek-ai/dsh-tool-workflow": "^0.1.2-rc.1",
95
- "@deepseek-ai/dsh-web-app": "^0.1.2-rc.1",
96
- "@deepseek-ai/dsh-webhook": "^0.1.2-rc.1",
97
- "@deepseek-ai/dsh-webhook-github": "^0.1.2-rc.1",
98
- "@deepseek-ai/dsh-workflow-worker-thread": "^0.1.2-rc.1",
37
+ "@deepseek-ai/cordis": "^4.0.2",
38
+ "@deepseek-ai/dsh-acp-app": "^0.1.3-alpha.2",
39
+ "@deepseek-ai/dsh-agent-tool-presentation": "^0.1.3-alpha.2",
40
+ "@deepseek-ai/dsh-agent-instructions": "^0.1.3-alpha.2",
41
+ "@deepseek-ai/cordis-plugin-timer": "^1.1.4",
42
+ "@deepseek-ai/dsh-base": "^0.1.3-alpha.2",
43
+ "@deepseek-ai/dsh-client-ui-agent-preset": "^0.1.3-alpha.2",
44
+ "@deepseek-ai/dsh-client-ui-cordis": "^0.1.3-alpha.2",
45
+ "@deepseek-ai/dsh-command-compact": "^0.1.3-alpha.2",
46
+ "@deepseek-ai/dsh-command-goal": "^0.1.3-alpha.2",
47
+ "@deepseek-ai/dsh-compaction-basic": "^0.1.3-alpha.2",
48
+ "@deepseek-ai/dsh-cmdline": "^0.1.3-alpha.2",
49
+ "@deepseek-ai/dsh-compaction-tool-result-pruner": "^0.1.3-alpha.2",
50
+ "@deepseek-ai/dsh-cordis-client-runner": "^0.1.3-alpha.2",
51
+ "@deepseek-ai/dsh-app-boot": "^0.1.3-alpha.2",
52
+ "@deepseek-ai/dsh-goal": "^0.1.3-alpha.2",
53
+ "@deepseek-ai/dsh-fs-local": "^0.1.3-alpha.2",
54
+ "@deepseek-ai/dsh-home-paths": "^0.1.3-alpha.2",
55
+ "@deepseek-ai/dsh-hooks-claude-code": "^0.1.3-alpha.2",
56
+ "@deepseek-ai/dsh-headless": "^0.1.3-alpha.2",
57
+ "@deepseek-ai/dsh-hooks-codex": "^0.1.3-alpha.2",
58
+ "@deepseek-ai/dsh-jobs-local": "^0.1.3-alpha.2",
59
+ "@deepseek-ai/dsh-launch-environment": "^0.1.3-alpha.2",
60
+ "@deepseek-ai/dsh-mcp-client": "^0.1.3-alpha.2",
61
+ "@deepseek-ai/dsh-persona": "^0.1.3-alpha.2",
62
+ "@deepseek-ai/dsh-plan-mode": "^0.1.3-alpha.2",
63
+ "@deepseek-ai/dsh-pwsh-local": "^0.1.3-alpha.2",
64
+ "@deepseek-ai/dsh-pwsh-sandbox": "^0.1.3-alpha.2",
65
+ "@deepseek-ai/dsh-schedule": "^0.1.3-alpha.2",
66
+ "@deepseek-ai/dsh-sdk-app": "^0.1.3-alpha.2",
67
+ "@deepseek-ai/dsh-sdk-minimal": "^0.1.3-alpha.2",
68
+ "@deepseek-ai/dsh-session-projection": "^0.1.3-alpha.2",
69
+ "@deepseek-ai/dsh-session-reference": "^0.1.3-alpha.2",
70
+ "@deepseek-ai/dsh-skill": "^0.1.3-alpha.2",
71
+ "@deepseek-ai/dsh-skill-filesystem": "^0.1.3-alpha.2",
72
+ "@deepseek-ai/dsh-terminal": "^0.1.3-alpha.2",
73
+ "@deepseek-ai/dsh-terminal-bash": "^0.1.3-alpha.2",
74
+ "@deepseek-ai/dsh-tmux-context": "^0.1.3-alpha.2",
75
+ "@deepseek-ai/dsh-token-meter": "^0.1.3-alpha.2",
76
+ "@deepseek-ai/dsh-time-context": "^0.1.3-alpha.2",
77
+ "@deepseek-ai/dsh-tool-ask-user": "^0.1.3-alpha.2",
78
+ "@deepseek-ai/dsh-goal-round-driver": "^0.1.3-alpha.2",
79
+ "@deepseek-ai/dsh-tool-cordis": "^0.1.3-alpha.2",
80
+ "@deepseek-ai/dsh-tool-bash": "^0.1.3-alpha.2",
81
+ "@deepseek-ai/dsh-tool-fs": "^0.1.3-alpha.2",
82
+ "@deepseek-ai/dsh-tool-fs-search": "^0.1.3-alpha.2",
83
+ "@deepseek-ai/dsh-tool-goal": "^0.1.3-alpha.2",
84
+ "@deepseek-ai/dsh-tool-jobs": "^0.1.3-alpha.2",
85
+ "@deepseek-ai/dsh-tool-pwsh-persistent": "^0.1.3-alpha.2",
86
+ "@deepseek-ai/dsh-tool-ralph": "^0.1.3-alpha.2",
87
+ "@deepseek-ai/dsh-tool-skill": "^0.1.3-alpha.2",
88
+ "@deepseek-ai/dsh-tool-pwsh": "^0.1.3-alpha.2",
89
+ "@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.3-alpha.2",
90
+ "@deepseek-ai/dsh-tool-subagent": "^0.1.3-alpha.2",
91
+ "@deepseek-ai/dsh-tool-subagent-control": "^0.1.3-alpha.2",
92
+ "@deepseek-ai/dsh-tool-todo": "^0.1.3-alpha.2",
93
+ "@deepseek-ai/dsh-tool-web": "^0.1.3-alpha.2",
94
+ "@deepseek-ai/dsh-tool-workflow": "^0.1.3-alpha.2",
95
+ "@deepseek-ai/dsh-web-app": "^0.1.3-alpha.2",
96
+ "@deepseek-ai/dsh-webhook": "^0.1.3-alpha.2",
97
+ "@deepseek-ai/dsh-webhook-github": "^0.1.3-alpha.2",
98
+ "@deepseek-ai/dsh-workflow-worker-thread": "^0.1.3-alpha.2",
99
+ "@deepseek-ai/dsh-http-proxy": "^0.1.3-alpha.2",
99
100
  "@deepseek-ai/schemastery": "^3.18.2",
100
- "@deepseek-ai/dsh-skill-filesystem": "^0.1.2-rc.1"
101
+ "@deepseek-ai/dsh-tool-bash-persistent": "^0.1.3-alpha.2"
101
102
  },
102
103
  "devDependencies": {
103
104
  "@agentclientprotocol/sdk": "1.4.0",
@@ -105,43 +106,43 @@
105
106
  "@types/ws": "8.18.1",
106
107
  "execa": "^10.0.0",
107
108
  "ws": "8.21.0",
108
- "@deepseek-ai/dsh-acp": "^0.1.2-rc.1",
109
- "@deepseek-ai/dsh-agent": "^0.1.2-rc.1",
110
- "@deepseek-ai/dsh-attachment-local": "^0.1.2-rc.1",
111
- "@deepseek-ai/dsh-bash-local": "^0.1.2-rc.1",
112
- "@deepseek-ai/dsh-credentials-local": "^0.1.2-rc.1",
113
- "@deepseek-ai/dsh-experimental-agent-team-profile": "^0.1.2-rc.1",
114
- "@deepseek-ai/dsh-experimental-code-runtime-python": "^0.1.2-rc.1",
115
- "@deepseek-ai/dsh-experimental-tool-agent-team": "^0.1.2-rc.1",
116
- "@deepseek-ai/dsh-fs-sandbox": "^0.1.2-rc.1",
117
- "@deepseek-ai/dsh-host-frontend-static": "^0.1.2-rc.1",
118
- "@deepseek-ai/dsh-host-webserver": "^0.1.2-rc.1",
119
- "@deepseek-ai/dsh-fs-observation-policy": "^0.1.2-rc.1",
120
- "@deepseek-ai/dsh-deepseek-llm-api-extensions": "^0.1.2-rc.1",
121
- "@deepseek-ai/dsh-llm": "^0.1.2-rc.1",
122
- "@deepseek-ai/dsh-llm-deepseek": "^0.1.2-rc.1",
123
- "@deepseek-ai/dsh-llm-mock-server": "^0.1.2-rc.1",
124
- "@deepseek-ai/dsh-llm-pi-ai": "^0.1.2-rc.1",
125
- "@deepseek-ai/dsh-llm-replay": "^0.1.2-rc.1",
126
- "@deepseek-ai/dsh-loader-smoke": "^0.1.2-rc.1",
127
- "@deepseek-ai/dsh-experimental-agent-team": "^0.1.2-rc.1",
128
- "@deepseek-ai/dsh-sandbox-local": "^0.1.2-rc.1",
129
- "@deepseek-ai/dsh-sandbox-policy": "^0.1.2-rc.1",
130
- "@deepseek-ai/dsh-session-log-deepseek": "^0.1.2-rc.1",
131
- "@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.2-rc.1",
132
- "@deepseek-ai/dsh-session-query": "^0.1.2-rc.1",
133
- "@deepseek-ai/dsh-plugin-package-inventory-deepseek": "^0.1.2-rc.1",
134
- "@deepseek-ai/dsh-shell-env": "^0.1.2-rc.1",
135
- "@deepseek-ai/dsh-settings": "^0.1.2-rc.1",
136
- "@deepseek-ai/dsh-settings-file": "^0.1.2-rc.1",
137
- "@deepseek-ai/dsh-subagent": "^0.1.2-rc.1",
138
- "@deepseek-ai/dsh-subagent-fork-in-process": "^0.1.2-rc.1",
139
- "@deepseek-ai/dsh-subprocess-local": "^0.1.2-rc.1",
140
- "@deepseek-ai/dsh-system-prompt": "^0.1.2-rc.1",
141
- "@deepseek-ai/dsh-tools": "^0.1.2-rc.1",
142
- "@deepseek-ai/dsh-user-approval": "^0.1.2-rc.1",
143
- "@deepseek-ai/dsh-session-checkpoint-policy": "^0.1.2-rc.1",
144
- "@deepseek-ai/dsh-subagent-spawn-in-process": "^0.1.2-rc.1",
145
- "@deepseek-ai/dsh-session": "^0.1.2-rc.1"
109
+ "@deepseek-ai/dsh-acp": "^0.1.3-alpha.2",
110
+ "@deepseek-ai/dsh-agent": "^0.1.3-alpha.2",
111
+ "@deepseek-ai/dsh-attachment-local": "^0.1.3-alpha.2",
112
+ "@deepseek-ai/dsh-bash-local": "^0.1.3-alpha.2",
113
+ "@deepseek-ai/dsh-credentials-local": "^0.1.3-alpha.2",
114
+ "@deepseek-ai/dsh-deepseek-llm-api-extensions": "^0.1.3-alpha.2",
115
+ "@deepseek-ai/dsh-experimental-agent-team": "^0.1.3-alpha.2",
116
+ "@deepseek-ai/dsh-experimental-agent-team-profile": "^0.1.3-alpha.2",
117
+ "@deepseek-ai/dsh-experimental-code-runtime-python": "^0.1.3-alpha.2",
118
+ "@deepseek-ai/dsh-experimental-tool-agent-team": "^0.1.3-alpha.2",
119
+ "@deepseek-ai/dsh-fs-observation-policy": "^0.1.3-alpha.2",
120
+ "@deepseek-ai/dsh-fs-sandbox": "^0.1.3-alpha.2",
121
+ "@deepseek-ai/dsh-host-frontend-static": "^0.1.3-alpha.2",
122
+ "@deepseek-ai/dsh-host-webserver": "^0.1.3-alpha.2",
123
+ "@deepseek-ai/dsh-llm": "^0.1.3-alpha.2",
124
+ "@deepseek-ai/dsh-llm-deepseek": "^0.1.3-alpha.2",
125
+ "@deepseek-ai/dsh-llm-mock-server": "^0.1.3-alpha.2",
126
+ "@deepseek-ai/dsh-llm-replay": "^0.1.3-alpha.2",
127
+ "@deepseek-ai/dsh-loader-smoke": "^0.1.3-alpha.2",
128
+ "@deepseek-ai/dsh-plugin-package-inventory-deepseek": "^0.1.3-alpha.2",
129
+ "@deepseek-ai/dsh-llm-pi-ai": "^0.1.3-alpha.2",
130
+ "@deepseek-ai/dsh-sandbox-local": "^0.1.3-alpha.2",
131
+ "@deepseek-ai/dsh-session": "^0.1.3-alpha.2",
132
+ "@deepseek-ai/dsh-sandbox-policy": "^0.1.3-alpha.2",
133
+ "@deepseek-ai/dsh-session-checkpoint-policy": "^0.1.3-alpha.2",
134
+ "@deepseek-ai/dsh-session-log-deepseek": "^0.1.3-alpha.2",
135
+ "@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.3-alpha.2",
136
+ "@deepseek-ai/dsh-shell-env": "^0.1.3-alpha.2",
137
+ "@deepseek-ai/dsh-session-query": "^0.1.3-alpha.2",
138
+ "@deepseek-ai/dsh-subagent": "^0.1.3-alpha.2",
139
+ "@deepseek-ai/dsh-subagent-fork-in-process": "^0.1.3-alpha.2",
140
+ "@deepseek-ai/dsh-settings": "^0.1.3-alpha.2",
141
+ "@deepseek-ai/dsh-settings-file": "^0.1.3-alpha.2",
142
+ "@deepseek-ai/dsh-subprocess-local": "^0.1.3-alpha.2",
143
+ "@deepseek-ai/dsh-system-prompt": "^0.1.3-alpha.2",
144
+ "@deepseek-ai/dsh-tools": "^0.1.3-alpha.2",
145
+ "@deepseek-ai/dsh-subagent-spawn-in-process": "^0.1.3-alpha.2",
146
+ "@deepseek-ai/dsh-user-approval": "^0.1.3-alpha.2"
146
147
  }
147
148
  }
@@ -1,2 +0,0 @@
1
- import { o as runProfile } from "./profile-boot-BTzzdrGY.js";
2
- export { runProfile };