@chatcode/chatcode-cli-test 3.0.2 → 3.0.3

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
@@ -286,12 +286,12 @@ async function runCli() {
286
286
  break;
287
287
  }
288
288
  case "plugin": {
289
- const { runPlugin } = await import("./plugin-CMMvQgyR.js");
289
+ const { runPlugin } = await import("./plugin-DSS8fYBJ.js");
290
290
  process.exit(await runPlugin(invocation.profile, invocation.args));
291
291
  break;
292
292
  }
293
293
  case "dump-config": {
294
- const { runDumpConfig } = await import("./dump-config-WbxM4B3p.js");
294
+ const { runDumpConfig } = await import("./dump-config-DIYmGHfM.js");
295
295
  runDumpConfig(invocation.profile, invocation.defaultOnly, invocation.patches, invocation.fromDefaultProfile);
296
296
  break;
297
297
  }
@@ -1,4 +1,4 @@
1
- import { i as homePatchPath, o as prepareProfile, r as PROFILE_ROOT_FILENAME } from "./profile-boot-CCxnpvy7.js";
1
+ import { a as homePatchPath, r as PROFILE_ROOT_FILENAME, s as prepareProfile } from "./profile-boot-Dncz2Q75.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 { n as INSTALL_ANCHOR } from "./profile-boot-CCxnpvy7.js";
1
+ import { n as INSTALL_ANCHOR } from "./profile-boot-Dncz2Q75.js";
2
2
  import { resolveProfileDir } from "@deepseek-ai/dsh-app-boot";
3
3
  import { join } from "node:path";
4
4
  import { runPluginCommand } from "@deepseek-ai/dsh-plugin-manager/operations";
@@ -1,4 +1,5 @@
1
1
  import { i as synchronizeLegacyHomeEnvironment, r as resolveChatCodeCliHome } from "./chatcode-home-B93iESZd.js";
2
+ import { createRequire } from "node:module";
2
3
  import { existsSync, mkdirSync, rmSync, writeFileSync } from "node:fs";
3
4
  import { fileURLToPath } from "node:url";
4
5
  import { PROFILE_PATCH_FILENAME, PluginPackages, boot, createProfileResolutionGeneration, healIsolatedProfileModuleFallback, healProfilesModuleFallback, initProfile, installFailLoud, loadOverlayPatches, loadProfile, readProfilePatches, resolveProfileDir } from "@deepseek-ai/dsh-app-boot";
@@ -135,6 +136,31 @@ function homePatchPath() {
135
136
  }
136
137
  /** Absolute path of this ChatCode CLI installation's package.json (both anchors: src/ and lib/ sit one level under apps/cli). */
137
138
  const INSTALL_ANCHOR = fileURLToPath(new URL("../package.json", import.meta.url));
139
+ /** Product overlays that are part of ChatCode CLI rather than the upstream Harness profile ABI. */
140
+ const CHATCODE_PROFILE_PATCHES = {
141
+ web: [
142
+ ["@chatcode/cco-better-sidebar", "cordis.patch.yml"],
143
+ ["@chatcode/cco-llm-chatcode-config", "cordis.patch.yml"],
144
+ ["@chatcode/cco-llm-chatcode-config", "cordis.web.patch.yml"],
145
+ ["@chatcode/cco-chat-import", "cordis.patch.yml"]
146
+ ],
147
+ cli: [["@chatcode/cco-chat-import", "cordis.patch.yml"]]
148
+ };
149
+ /**
150
+ * Resolve ChatCode-owned patch files from the launcher's installed dependency
151
+ * graph. This mirrors the source-checkout overlays for published installs,
152
+ * where `scripts/dsh-local.ts` is not present, without changing the persisted
153
+ * profile or the upstream DSH plugin ABI.
154
+ */
155
+ function chatCodeProfilePatchFiles(profile, installAnchor = INSTALL_ANCHOR) {
156
+ const declarations = CHATCODE_PROFILE_PATCHES[profile] ?? [];
157
+ const require = createRequire(installAnchor);
158
+ return declarations.map(([packageName, patch]) => {
159
+ const path = join(dirname(require.resolve(`${packageName}/package.json`)), patch);
160
+ if (!existsSync(path)) throw new Error(`${NAME}: installed product plugin ${packageName} is missing ${patch}`);
161
+ return path;
162
+ });
163
+ }
138
164
  /** The empty root entry list every profile tree patches over. */
139
165
  const PROFILE_ROOT_CONFIG = `# ChatCode CLI profile root — an empty entry list. The tree is composed as patches:
140
166
  # each bundle in package.json's dsh.profile.bundles, then cordis.patch.yml, then any
@@ -236,10 +262,12 @@ async function composeProfile(name, patchFiles, resolutionMode, fromDefaultProfi
236
262
  home: resolveChatCodeCliHome()
237
263
  };
238
264
  if (resolvedProfile !== void 0 && resolutionMode !== "runtime") healIsolatedProfileModuleFallback(resolvedProfile);
265
+ const resolution = resolutionMode === "runtime" || resolvedProfile !== void 0 ? await createProfileResolutionGeneration(resolutionOptions) : await healProfilesModuleFallback(resolutionOptions);
266
+ const productPatchFiles = resolvedProfile === void 0 ? chatCodeProfilePatchFiles(name, INSTALL_ANCHOR) : [];
239
267
  return {
240
268
  profile,
241
- resolution: resolutionMode === "runtime" || resolvedProfile !== void 0 ? await createProfileResolutionGeneration(resolutionOptions) : await healProfilesModuleFallback(resolutionOptions),
242
- overlays: patchFiles.flatMap((file) => loadOverlayPatches(NAME, resolve(file)))
269
+ resolution,
270
+ overlays: [...new Set([...productPatchFiles, ...patchFiles].map((file) => resolve(file)))].flatMap((file) => loadOverlayPatches(NAME, file))
243
271
  };
244
272
  }
245
273
  /**
@@ -328,4 +356,4 @@ async function runProfile(options) {
328
356
  }
329
357
  }
330
358
  //#endregion
331
- export { initializeProfileFromDefault as a, homePatchPath as i, INSTALL_ANCHOR as n, prepareProfile as o, PROFILE_ROOT_FILENAME as r, runProfile as s, CHATCODE_PROFILE_TEMPLATES as t };
359
+ export { homePatchPath as a, runProfile as c, chatCodeProfilePatchFiles as i, INSTALL_ANCHOR as n, initializeProfileFromDefault as o, PROFILE_ROOT_FILENAME as r, prepareProfile as s, CHATCODE_PROFILE_TEMPLATES as t };
@@ -1,2 +1,2 @@
1
- import { a as initializeProfileFromDefault, i as homePatchPath, n as INSTALL_ANCHOR, o as prepareProfile, r as PROFILE_ROOT_FILENAME, s as runProfile, t as CHATCODE_PROFILE_TEMPLATES } from "./profile-boot-CCxnpvy7.js";
2
- export { CHATCODE_PROFILE_TEMPLATES, INSTALL_ANCHOR, PROFILE_ROOT_FILENAME, homePatchPath, initializeProfileFromDefault, prepareProfile, runProfile };
1
+ import { a as homePatchPath, c as runProfile, i as chatCodeProfilePatchFiles, n as INSTALL_ANCHOR, o as initializeProfileFromDefault, r as PROFILE_ROOT_FILENAME, s as prepareProfile, t as CHATCODE_PROFILE_TEMPLATES } from "./profile-boot-Dncz2Q75.js";
2
+ export { CHATCODE_PROFILE_TEMPLATES, INSTALL_ANCHOR, PROFILE_ROOT_FILENAME, chatCodeProfilePatchFiles, homePatchPath, initializeProfileFromDefault, prepareProfile, runProfile };
@@ -24,6 +24,13 @@ export declare const CHATCODE_PROFILE_TEMPLATES: Readonly<Record<string, Profile
24
24
  export declare function homePatchPath(): string;
25
25
  /** Absolute path of this ChatCode CLI installation's package.json (both anchors: src/ and lib/ sit one level under apps/cli). */
26
26
  export declare const INSTALL_ANCHOR: string;
27
+ /**
28
+ * Resolve ChatCode-owned patch files from the launcher's installed dependency
29
+ * graph. This mirrors the source-checkout overlays for published installs,
30
+ * where `scripts/dsh-local.ts` is not present, without changing the persisted
31
+ * profile or the upstream DSH plugin ABI.
32
+ */
33
+ export declare function chatCodeProfilePatchFiles(profile: string, installAnchor?: string): string[];
27
34
  /** Root config filename inside a profile directory. */
28
35
  export declare const PROFILE_ROOT_FILENAME = "cordis.yml";
29
36
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@chatcode/chatcode-cli-test",
3
3
  "description": "ChatCode CLI: TUI-first coding agent, Web launcher, profiles, and legacy DSH-compatible plugins",
4
- "version": "3.0.2",
4
+ "version": "3.0.3",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -29,277 +29,277 @@
29
29
  },
30
30
  "license": "MIT",
31
31
  "dependencies": {
32
- "@chatcode/cco-better-sidebar": "0.18.0-alpha.1",
32
+ "@chatcode/cco-better-sidebar": "0.18.0-alpha.2",
33
33
  "@chatcode/cco-builtin-browser": "0.1.21",
34
34
  "@chatcode/cco-chat-import": "0.12.0",
35
35
  "@chatcode/cco-llm-chatcode-config": "0.1.1",
36
36
  "@chatcode/cco-market": "1.45.1",
37
- "@chatcode/cco-tui": "0.10.0-beta.6",
38
- "@deepseek-harness-tui/dsh-tui": "npm:@chatcode/cco-tui@0.10.0-beta.6",
37
+ "@chatcode/cco-tui": "0.10.0-beta.7",
38
+ "@deepseek-harness-tui/dsh-tui": "npm:@chatcode/cco-tui@0.10.0-beta.7",
39
39
  "commander": "^15.0.0",
40
- "dsh-better-sidebar": "npm:@chatcode/cco-better-sidebar@0.18.0-alpha.1",
40
+ "dsh-better-sidebar": "npm:@chatcode/cco-better-sidebar@0.18.0-alpha.2",
41
41
  "dsh-builtin-browser": "npm:@chatcode/cco-builtin-browser@0.1.21",
42
42
  "dsh-chat-import": "npm:@chatcode/cco-chat-import@0.12.0",
43
43
  "dsh-llm-chatcode-config": "npm:@chatcode/cco-llm-chatcode-config@0.1.1",
44
44
  "dshmarket": "npm:@chatcode/cco-market@1.45.1",
45
45
  "js-yaml": "^4.2.0",
46
46
  "node-addon-require-builtin": "^0.1.6",
47
+ "@deepseek-ai/cordis-plugin-include": "^1.0.7",
47
48
  "@deepseek-ai/cordis": "^4.0.2",
48
- "@deepseek-ai/cordis-plugin-group": "^1.0.2",
49
- "@deepseek-ai/cordis-plugin-timer": "^1.1.4",
50
49
  "@deepseek-ai/dsh-acp": "^0.1.6-alpha.2",
51
- "@deepseek-ai/cordis-plugin-include": "^1.0.7",
52
- "@deepseek-ai/dsh-agent": "^0.1.6-alpha.2",
53
- "@deepseek-ai/cordis-plugin-loader": "^1.0.3",
54
50
  "@deepseek-ai/dsh-acp-app": "^0.1.6-alpha.2",
51
+ "@deepseek-ai/cordis-plugin-loader": "^1.0.3",
52
+ "@deepseek-ai/cordis-plugin-group": "^1.0.2",
53
+ "@deepseek-ai/cordis-plugin-timer": "^1.1.4",
55
54
  "@deepseek-ai/dsh-agent-default-model": "^0.1.6-alpha.2",
56
- "@deepseek-ai/dsh-agent-presets": "^0.1.6-alpha.2",
55
+ "@deepseek-ai/dsh-agent": "^0.1.6-alpha.2",
56
+ "@deepseek-ai/dsh-agent-instructions": "^0.1.6-alpha.2",
57
57
  "@deepseek-ai/dsh-agent-loop": "^0.1.6-alpha.2",
58
58
  "@deepseek-ai/dsh-agent-tool-presentation": "^0.1.6-alpha.2",
59
- "@deepseek-ai/dsh-agent-instructions": "^0.1.6-alpha.2",
59
+ "@deepseek-ai/dsh-agent-presets": "^0.1.6-alpha.2",
60
60
  "@deepseek-ai/dsh-anonymous-user-id": "^0.1.6-alpha.2",
61
- "@deepseek-ai/dsh-api-remotes": "^0.1.6-alpha.2",
62
61
  "@deepseek-ai/dsh-api-gateway": "^0.1.6-alpha.2",
63
- "@deepseek-ai/dsh-api-session-controller": "^0.1.6-alpha.2",
62
+ "@deepseek-ai/dsh-api-remotes": "^0.1.6-alpha.2",
64
63
  "@deepseek-ai/dsh-api-settings-controller": "^0.1.6-alpha.2",
65
- "@deepseek-ai/dsh-api-terminal-controller": "^0.1.6-alpha.2",
64
+ "@deepseek-ai/dsh-api-session-controller": "^0.1.6-alpha.2",
66
65
  "@deepseek-ai/dsh-api-workspace-controller": "^0.1.6-alpha.2",
66
+ "@deepseek-ai/dsh-api-terminal-controller": "^0.1.6-alpha.2",
67
+ "@deepseek-ai/dsh-atomic-write": "^0.1.6-alpha.2",
67
68
  "@deepseek-ai/dsh-api-workspace-files": "^0.1.6-alpha.2",
68
69
  "@deepseek-ai/dsh-app-boot": "^0.1.6-alpha.2",
69
- "@deepseek-ai/dsh-atomic-write": "^0.1.6-alpha.2",
70
- "@deepseek-ai/dsh-attachment": "^0.1.6-alpha.2",
71
- "@deepseek-ai/dsh-attachment-local": "^0.1.6-alpha.2",
72
- "@deepseek-ai/dsh-base": "^0.1.6-alpha.2",
73
- "@deepseek-ai/dsh-authorization": "^0.1.6-alpha.2",
74
- "@deepseek-ai/dsh-bash-local": "^0.1.6-alpha.2",
75
70
  "@deepseek-ai/dsh-bash-sandbox": "^0.1.6-alpha.2",
71
+ "@deepseek-ai/dsh-bash-local": "^0.1.6-alpha.2",
72
+ "@deepseek-ai/dsh-authorization": "^0.1.6-alpha.2",
73
+ "@deepseek-ai/dsh-attachment-local": "^0.1.6-alpha.2",
74
+ "@deepseek-ai/dsh-attachment": "^0.1.6-alpha.2",
76
75
  "@deepseek-ai/dsh-brand": "^0.1.6-alpha.2",
77
- "@deepseek-ai/dsh-client-connection": "^0.1.6-alpha.2",
76
+ "@deepseek-ai/dsh-base": "^0.1.6-alpha.2",
78
77
  "@deepseek-ai/dsh-chunked-list": "^0.1.6-alpha.2",
79
- "@deepseek-ai/dsh-client-file-upload": "^0.1.6-alpha.2",
80
- "@deepseek-ai/dsh-client-hmr": "^0.1.6-alpha.2",
81
78
  "@deepseek-ai/dsh-client-locale": "^0.1.6-alpha.2",
79
+ "@deepseek-ai/dsh-client-connection": "^0.1.6-alpha.2",
82
80
  "@deepseek-ai/dsh-client-modules": "^0.1.6-alpha.2",
83
- "@deepseek-ai/dsh-client-ui-agent-preset": "^0.1.6-alpha.2",
84
81
  "@deepseek-ai/dsh-client-resources": "^0.1.6-alpha.2",
85
- "@deepseek-ai/dsh-client-ui-attachment": "^0.1.6-alpha.2",
86
82
  "@deepseek-ai/dsh-client-ui-approval": "^0.1.6-alpha.2",
83
+ "@deepseek-ai/dsh-client-ui-attachment": "^0.1.6-alpha.2",
87
84
  "@deepseek-ai/dsh-client-ui-brand-official": "^0.1.6-alpha.2",
88
85
  "@deepseek-ai/dsh-client-ui-chat": "^0.1.6-alpha.2",
89
- "@deepseek-ai/dsh-client-ui-commands": "^0.1.6-alpha.2",
90
- "@deepseek-ai/dsh-client-ui-cordis": "^0.1.6-alpha.2",
86
+ "@deepseek-ai/dsh-client-ui-agent-preset": "^0.1.6-alpha.2",
91
87
  "@deepseek-ai/dsh-client-ui-conversation": "^0.1.6-alpha.2",
88
+ "@deepseek-ai/dsh-client-file-upload": "^0.1.6-alpha.2",
89
+ "@deepseek-ai/dsh-client-ui-commands": "^0.1.6-alpha.2",
92
90
  "@deepseek-ai/dsh-client-ui-deliverables": "^0.1.6-alpha.2",
93
91
  "@deepseek-ai/dsh-client-ui-directory-picker-native": "^0.1.6-alpha.2",
94
- "@deepseek-ai/dsh-client-ui-goal": "^0.1.6-alpha.2",
95
92
  "@deepseek-ai/dsh-client-ui-directory-picker-browse": "^0.1.6-alpha.2",
96
- "@deepseek-ai/dsh-client-ui-layout": "^0.1.6-alpha.2",
97
- "@deepseek-ai/dsh-client-ui-input-trigger": "^0.1.6-alpha.2",
93
+ "@deepseek-ai/dsh-client-ui-cordis": "^0.1.6-alpha.2",
98
94
  "@deepseek-ai/dsh-client-ui-jobs": "^0.1.6-alpha.2",
99
- "@deepseek-ai/dsh-client-ui-message-feedback": "^0.1.6-alpha.2",
95
+ "@deepseek-ai/dsh-client-ui-goal": "^0.1.6-alpha.2",
100
96
  "@deepseek-ai/dsh-client-ui-model-selection": "^0.1.6-alpha.2",
101
- "@deepseek-ai/dsh-client-ui-plugin-manager": "^0.1.6-alpha.2",
97
+ "@deepseek-ai/dsh-client-ui-message-feedback": "^0.1.6-alpha.2",
98
+ "@deepseek-ai/dsh-client-ui-open-in-app": "^0.1.6-alpha.2",
99
+ "@deepseek-ai/dsh-client-ui-permission-presets": "^0.1.6-alpha.2",
102
100
  "@deepseek-ai/dsh-client-ui-plan": "^0.1.6-alpha.2",
103
- "@deepseek-ai/dsh-client-ui-primitives": "^0.1.6-alpha.2",
101
+ "@deepseek-ai/dsh-client-ui-plugin-manager": "^0.1.6-alpha.2",
102
+ "@deepseek-ai/dsh-client-ui-input-trigger": "^0.1.6-alpha.2",
103
+ "@deepseek-ai/dsh-client-ui-reference": "^0.1.6-alpha.2",
104
+ "@deepseek-ai/dsh-client-hmr": "^0.1.6-alpha.2",
104
105
  "@deepseek-ai/dsh-client-ui-renderer": "^0.1.6-alpha.2",
105
- "@deepseek-ai/dsh-client-ui-permission-presets": "^0.1.6-alpha.2",
106
+ "@deepseek-ai/dsh-client-ui-primitives": "^0.1.6-alpha.2",
107
+ "@deepseek-ai/dsh-client-ui-settings-general": "^0.1.6-alpha.2",
106
108
  "@deepseek-ai/dsh-client-ui-session": "^0.1.6-alpha.2",
107
- "@deepseek-ai/dsh-client-ui-settings": "^0.1.6-alpha.2",
108
- "@deepseek-ai/dsh-client-ui-open-in-app": "^0.1.6-alpha.2",
109
109
  "@deepseek-ai/dsh-client-ui-schedule": "^0.1.6-alpha.2",
110
- "@deepseek-ai/dsh-client-ui-reference": "^0.1.6-alpha.2",
111
- "@deepseek-ai/dsh-client-ui-settings-general": "^0.1.6-alpha.2",
112
110
  "@deepseek-ai/dsh-client-ui-settings-models": "^0.1.6-alpha.2",
113
- "@deepseek-ai/dsh-client-ui-settings-plugins": "^0.1.6-alpha.2",
114
111
  "@deepseek-ai/dsh-client-ui-settings-plugin-inventory": "^0.1.6-alpha.2",
112
+ "@deepseek-ai/dsh-client-ui-layout": "^0.1.6-alpha.2",
113
+ "@deepseek-ai/dsh-client-ui-settings-unarchive-sessions": "^0.1.6-alpha.2",
114
+ "@deepseek-ai/dsh-client-ui-sidebar": "^0.1.6-alpha.2",
115
+ "@deepseek-ai/dsh-client-ui-settings": "^0.1.6-alpha.2",
115
116
  "@deepseek-ai/dsh-client-ui-sidebar-documentpreview": "^0.1.6-alpha.2",
116
117
  "@deepseek-ai/dsh-client-ui-sidebar-files": "^0.1.6-alpha.2",
117
- "@deepseek-ai/dsh-client-ui-sidebar-browser": "^0.1.6-alpha.2",
118
- "@deepseek-ai/dsh-client-ui-sidebar-terminal": "^0.1.6-alpha.2",
119
118
  "@deepseek-ai/dsh-client-ui-sidebar-right": "^0.1.6-alpha.2",
119
+ "@deepseek-ai/dsh-client-ui-sidebar-terminal": "^0.1.6-alpha.2",
120
+ "@deepseek-ai/dsh-client-ui-sidebar-browser": "^0.1.6-alpha.2",
120
121
  "@deepseek-ai/dsh-client-ui-skill": "^0.1.6-alpha.2",
121
- "@deepseek-ai/dsh-client-ui-subagent": "^0.1.6-alpha.2",
122
- "@deepseek-ai/dsh-client-ui-sidebar": "^0.1.6-alpha.2",
122
+ "@deepseek-ai/dsh-client-ui-settings-plugins": "^0.1.6-alpha.2",
123
123
  "@deepseek-ai/dsh-client-ui-theme": "^0.1.6-alpha.2",
124
- "@deepseek-ai/dsh-client-ui-settings-unarchive-sessions": "^0.1.6-alpha.2",
125
- "@deepseek-ai/dsh-client-ui-slots": "^0.1.6-alpha.2",
124
+ "@deepseek-ai/dsh-client-ui-subagent": "^0.1.6-alpha.2",
126
125
  "@deepseek-ai/dsh-client-ui-tool": "^0.1.6-alpha.2",
126
+ "@deepseek-ai/dsh-client-ui-slots": "^0.1.6-alpha.2",
127
127
  "@deepseek-ai/dsh-client-ui-user-questions": "^0.1.6-alpha.2",
128
- "@deepseek-ai/dsh-cmdline": "^0.1.6-alpha.2",
129
- "@deepseek-ai/dsh-client-ui-workflow-run": "^0.1.6-alpha.2",
130
128
  "@deepseek-ai/dsh-client-ui-workspace": "^0.1.6-alpha.2",
131
- "@deepseek-ai/dsh-client-ui-trajectory": "^0.1.6-alpha.2",
132
129
  "@deepseek-ai/dsh-command-compact": "^0.1.6-alpha.2",
133
- "@deepseek-ai/dsh-command-feedback": "^0.1.6-alpha.2",
130
+ "@deepseek-ai/dsh-cmdline": "^0.1.6-alpha.2",
131
+ "@deepseek-ai/dsh-client-ui-workflow-run": "^0.1.6-alpha.2",
134
132
  "@deepseek-ai/dsh-command-goal": "^0.1.6-alpha.2",
133
+ "@deepseek-ai/dsh-compaction-image-offload": "^0.1.6-alpha.2",
134
+ "@deepseek-ai/dsh-command-feedback": "^0.1.6-alpha.2",
135
135
  "@deepseek-ai/dsh-compaction": "^0.1.6-alpha.2",
136
136
  "@deepseek-ai/dsh-compaction-basic": "^0.1.6-alpha.2",
137
- "@deepseek-ai/dsh-compaction-tool-result-pruner": "^0.1.6-alpha.2",
138
137
  "@deepseek-ai/dsh-commands": "^0.1.6-alpha.2",
139
- "@deepseek-ai/dsh-cordis-client-runner": "^0.1.6-alpha.2",
138
+ "@deepseek-ai/dsh-client-ui-trajectory": "^0.1.6-alpha.2",
140
139
  "@deepseek-ai/dsh-cordis-host-runner": "^0.1.6-alpha.2",
141
- "@deepseek-ai/dsh-compaction-image-offload": "^0.1.6-alpha.2",
142
140
  "@deepseek-ai/dsh-credentials-local": "^0.1.6-alpha.2",
141
+ "@deepseek-ai/dsh-cordis-client-runner": "^0.1.6-alpha.2",
142
+ "@deepseek-ai/dsh-compaction-tool-result-pruner": "^0.1.6-alpha.2",
143
143
  "@deepseek-ai/dsh-credentials": "^0.1.6-alpha.2",
144
144
  "@deepseek-ai/dsh-deepseek-llm-api-extensions": "^0.1.6-alpha.2",
145
- "@deepseek-ai/dsh-experimental-agent-team-profile": "^0.1.6-alpha.2",
146
- "@deepseek-ai/dsh-experimental-agent-team": "^0.1.6-alpha.2",
147
- "@deepseek-ai/dsh-experimental-agent-team-web-profile": "^0.1.6-alpha.2",
148
145
  "@deepseek-ai/dsh-deque": "^0.1.6-alpha.2",
149
- "@deepseek-ai/dsh-experimental-ptc-runtime-python": "^0.1.6-alpha.2",
146
+ "@deepseek-ai/dsh-experimental-agent-team": "^0.1.6-alpha.2",
150
147
  "@deepseek-ai/dsh-experimental-client-ui-agent-team": "^0.1.6-alpha.2",
148
+ "@deepseek-ai/dsh-experimental-ptc-runtime-python": "^0.1.6-alpha.2",
149
+ "@deepseek-ai/dsh-experimental-agent-team-web-profile": "^0.1.6-alpha.2",
151
150
  "@deepseek-ai/dsh-file-reference-local": "^0.1.6-alpha.2",
152
- "@deepseek-ai/dsh-experimental-tool-agent-team": "^0.1.6-alpha.2",
151
+ "@deepseek-ai/dsh-experimental-agent-team-profile": "^0.1.6-alpha.2",
152
+ "@deepseek-ai/dsh-file-reference": "^0.1.6-alpha.2",
153
153
  "@deepseek-ai/dsh-fs-observation-policy": "^0.1.6-alpha.2",
154
+ "@deepseek-ai/dsh-fs-local": "^0.1.6-alpha.2",
155
+ "@deepseek-ai/dsh-experimental-tool-agent-team": "^0.1.6-alpha.2",
154
156
  "@deepseek-ai/dsh-fs": "^0.1.6-alpha.2",
155
157
  "@deepseek-ai/dsh-goal": "^0.1.6-alpha.2",
156
- "@deepseek-ai/dsh-fs-local": "^0.1.6-alpha.2",
158
+ "@deepseek-ai/dsh-hmr": "^0.1.6-alpha.2",
157
159
  "@deepseek-ai/dsh-fs-sandbox": "^0.1.6-alpha.2",
158
- "@deepseek-ai/dsh-goal-round-driver": "^0.1.6-alpha.2",
159
160
  "@deepseek-ai/dsh-headless": "^0.1.6-alpha.2",
160
- "@deepseek-ai/dsh-hmr": "^0.1.6-alpha.2",
161
- "@deepseek-ai/dsh-file-reference": "^0.1.6-alpha.2",
162
161
  "@deepseek-ai/dsh-hooks-claude-code": "^0.1.6-alpha.2",
163
- "@deepseek-ai/dsh-host-directory-picker": "^0.1.6-alpha.2",
162
+ "@deepseek-ai/dsh-home-paths": "^0.1.6-alpha.2",
164
163
  "@deepseek-ai/dsh-hooks-codex": "^0.1.6-alpha.2",
165
- "@deepseek-ai/dsh-host-directory-picker-browse": "^0.1.6-alpha.2",
166
- "@deepseek-ai/dsh-host-directory-picker-auto": "^0.1.6-alpha.2",
167
- "@deepseek-ai/dsh-host-directory-picker-native": "^0.1.6-alpha.2",
164
+ "@deepseek-ai/dsh-goal-round-driver": "^0.1.6-alpha.2",
168
165
  "@deepseek-ai/dsh-hook-protocol": "^0.1.6-alpha.2",
169
- "@deepseek-ai/dsh-host-open-in-app": "^0.1.6-alpha.2",
166
+ "@deepseek-ai/dsh-host-directory-picker-auto": "^0.1.6-alpha.2",
167
+ "@deepseek-ai/dsh-host-directory-picker": "^0.1.6-alpha.2",
168
+ "@deepseek-ai/dsh-host-directory-picker-browse": "^0.1.6-alpha.2",
170
169
  "@deepseek-ai/dsh-host-frontend-static": "^0.1.6-alpha.2",
170
+ "@deepseek-ai/dsh-host-open-in-app": "^0.1.6-alpha.2",
171
171
  "@deepseek-ai/dsh-host-webserver": "^0.1.6-alpha.2",
172
- "@deepseek-ai/dsh-invariants": "^0.1.6-alpha.2",
173
- "@deepseek-ai/dsh-http-proxy": "^0.1.6-alpha.2",
174
172
  "@deepseek-ai/dsh-host-plugin-inventory": "^0.1.6-alpha.2",
175
- "@deepseek-ai/dsh-jobs": "^0.1.6-alpha.2",
173
+ "@deepseek-ai/dsh-http-proxy": "^0.1.6-alpha.2",
176
174
  "@deepseek-ai/dsh-jobs-local": "^0.1.6-alpha.2",
177
- "@deepseek-ai/dsh-launch-environment": "^0.1.6-alpha.2",
175
+ "@deepseek-ai/dsh-host-directory-picker-native": "^0.1.6-alpha.2",
176
+ "@deepseek-ai/dsh-jobs": "^0.1.6-alpha.2",
178
177
  "@deepseek-ai/dsh-lazy-require": "^0.1.6-alpha.2",
179
- "@deepseek-ai/dsh-home-paths": "^0.1.6-alpha.2",
178
+ "@deepseek-ai/dsh-launch-environment": "^0.1.6-alpha.2",
179
+ "@deepseek-ai/dsh-invariants": "^0.1.6-alpha.2",
180
180
  "@deepseek-ai/dsh-llm": "^0.1.6-alpha.2",
181
+ "@deepseek-ai/dsh-llm-pi-ai": "^0.1.6-alpha.2",
182
+ "@deepseek-ai/dsh-mcp-resources": "^0.1.6-alpha.2",
181
183
  "@deepseek-ai/dsh-llm-deepseek": "^0.1.6-alpha.2",
182
184
  "@deepseek-ai/dsh-llm-retry": "^0.1.6-alpha.2",
183
185
  "@deepseek-ai/dsh-mcp-client": "^0.1.6-alpha.2",
184
- "@deepseek-ai/dsh-message-feedback": "^0.1.6-alpha.2",
185
- "@deepseek-ai/dsh-mcp-resources": "^0.1.6-alpha.2",
186
- "@deepseek-ai/dsh-llm-pi-ai": "^0.1.6-alpha.2",
187
- "@deepseek-ai/dsh-office-to-pdf": "^0.1.6-alpha.2",
188
- "@deepseek-ai/dsh-permission-presets": "^0.1.6-alpha.2",
189
186
  "@deepseek-ai/dsh-package-manifest": "^0.1.6-alpha.2",
190
- "@deepseek-ai/dsh-plan-mode": "^0.1.6-alpha.2",
191
- "@deepseek-ai/dsh-plugin-manager": "^0.1.6-alpha.2",
192
- "@deepseek-ai/dsh-plugin-package-inventory-deepseek": "^0.1.6-alpha.2",
187
+ "@deepseek-ai/dsh-permission-presets": "^0.1.6-alpha.2",
188
+ "@deepseek-ai/dsh-output-retention": "^0.1.6-alpha.2",
189
+ "@deepseek-ai/dsh-office-to-pdf": "^0.1.6-alpha.2",
190
+ "@deepseek-ai/dsh-message-feedback": "^0.1.6-alpha.2",
191
+ "@deepseek-ai/dsh-persona": "^0.1.6-alpha.2",
193
192
  "@deepseek-ai/dsh-native-command": "^0.1.6-alpha.2",
193
+ "@deepseek-ai/dsh-plan-mode": "^0.1.6-alpha.2",
194
194
  "@deepseek-ai/dsh-ptc-runtime": "^0.1.6-alpha.2",
195
+ "@deepseek-ai/dsh-plugin-package-inventory-deepseek": "^0.1.6-alpha.2",
195
196
  "@deepseek-ai/dsh-ptc-runtime-node": "^0.1.6-alpha.2",
196
- "@deepseek-ai/dsh-persona": "^0.1.6-alpha.2",
197
197
  "@deepseek-ai/dsh-pwsh-local": "^0.1.6-alpha.2",
198
+ "@deepseek-ai/dsh-sandbox": "^0.1.6-alpha.2",
198
199
  "@deepseek-ai/dsh-pwsh-sandbox": "^0.1.6-alpha.2",
199
200
  "@deepseek-ai/dsh-repeat-tool-reminder": "^0.1.6-alpha.2",
200
- "@deepseek-ai/dsh-sandbox": "^0.1.6-alpha.2",
201
+ "@deepseek-ai/dsh-sandbox-local": "^0.1.6-alpha.2",
201
202
  "@deepseek-ai/dsh-sandbox-policy": "^0.1.6-alpha.2",
202
203
  "@deepseek-ai/dsh-sandbox-windows-acl": "^0.1.6-alpha.2",
203
- "@deepseek-ai/dsh-output-retention": "^0.1.6-alpha.2",
204
- "@deepseek-ai/dsh-sandbox-local": "^0.1.6-alpha.2",
205
- "@deepseek-ai/dsh-scope": "^0.1.6-alpha.2",
206
- "@deepseek-ai/dsh-sdk-jsonrpc-server": "^0.1.6-alpha.2",
207
- "@deepseek-ai/dsh-schedule": "^0.1.6-alpha.2",
208
- "@deepseek-ai/dsh-sdk-minimal": "^0.1.6-alpha.2",
204
+ "@deepseek-ai/dsh-sdk-app": "^0.1.6-alpha.2",
209
205
  "@deepseek-ai/dsh-sdk-protocol": "^0.1.6-alpha.2",
206
+ "@deepseek-ai/dsh-plugin-manager": "^0.1.6-alpha.2",
210
207
  "@deepseek-ai/dsh-session": "^0.1.6-alpha.2",
211
- "@deepseek-ai/dsh-session-checkpoint-policy": "^0.1.6-alpha.2",
212
- "@deepseek-ai/dsh-session-format-v0-to-v1": "^0.1.6-alpha.2",
213
- "@deepseek-ai/dsh-sdk-app": "^0.1.6-alpha.2",
208
+ "@deepseek-ai/dsh-sdk-jsonrpc-server": "^0.1.6-alpha.2",
209
+ "@deepseek-ai/dsh-scope": "^0.1.6-alpha.2",
210
+ "@deepseek-ai/dsh-sdk-minimal": "^0.1.6-alpha.2",
211
+ "@deepseek-ai/dsh-schedule": "^0.1.6-alpha.2",
214
212
  "@deepseek-ai/dsh-session-format": "^0.1.6-alpha.2",
213
+ "@deepseek-ai/dsh-session-persistence": "^0.1.6-alpha.2",
215
214
  "@deepseek-ai/dsh-session-format-v1-to-v2": "^0.1.6-alpha.2",
216
- "@deepseek-ai/dsh-session-log-deepseek": "^0.1.6-alpha.2",
217
215
  "@deepseek-ai/dsh-session-format-catalog": "^0.1.6-alpha.2",
218
216
  "@deepseek-ai/dsh-session-format-v2-to-v3": "^0.1.6-alpha.2",
219
- "@deepseek-ai/dsh-session-log-export": "^0.1.6-alpha.2",
220
- "@deepseek-ai/dsh-session-persistence": "^0.1.6-alpha.2",
217
+ "@deepseek-ai/dsh-session-checkpoint-policy": "^0.1.6-alpha.2",
221
218
  "@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.6-alpha.2",
222
- "@deepseek-ai/dsh-session-query-sqlite": "^0.1.6-alpha.2",
219
+ "@deepseek-ai/dsh-session-log-export": "^0.1.6-alpha.2",
223
220
  "@deepseek-ai/dsh-session-projection": "^0.1.6-alpha.2",
224
- "@deepseek-ai/dsh-session-projection-cache": "^0.1.6-alpha.2",
221
+ "@deepseek-ai/dsh-session-format-v0-to-v1": "^0.1.6-alpha.2",
225
222
  "@deepseek-ai/dsh-session-query": "^0.1.6-alpha.2",
226
- "@deepseek-ai/dsh-session-stats": "^0.1.6-alpha.2",
223
+ "@deepseek-ai/dsh-session-projection-cache": "^0.1.6-alpha.2",
227
224
  "@deepseek-ai/dsh-session-reference": "^0.1.6-alpha.2",
228
- "@deepseek-ai/dsh-session-telemetry-otel": "^0.1.6-alpha.2",
229
225
  "@deepseek-ai/dsh-session-telemetry": "^0.1.6-alpha.2",
226
+ "@deepseek-ai/dsh-session-query-sqlite": "^0.1.6-alpha.2",
227
+ "@deepseek-ai/dsh-session-stats": "^0.1.6-alpha.2",
228
+ "@deepseek-ai/dsh-session-log-deepseek": "^0.1.6-alpha.2",
230
229
  "@deepseek-ai/dsh-session-title": "^0.1.6-alpha.2",
231
- "@deepseek-ai/dsh-session-title-first-prompt-llm": "^0.1.6-alpha.2",
232
230
  "@deepseek-ai/dsh-session-title-llm": "^0.1.6-alpha.2",
233
- "@deepseek-ai/dsh-session-turn-outline": "^0.1.6-alpha.2",
231
+ "@deepseek-ai/dsh-session-telemetry-otel": "^0.1.6-alpha.2",
232
+ "@deepseek-ai/dsh-session-title-first-prompt-llm": "^0.1.6-alpha.2",
233
+ "@deepseek-ai/dsh-settings": "^0.1.6-alpha.2",
234
234
  "@deepseek-ai/dsh-settings-file": "^0.1.6-alpha.2",
235
- "@deepseek-ai/dsh-skill": "^0.1.6-alpha.2",
235
+ "@deepseek-ai/dsh-session-turn-outline": "^0.1.6-alpha.2",
236
236
  "@deepseek-ai/dsh-shell": "^0.1.6-alpha.2",
237
237
  "@deepseek-ai/dsh-shell-env": "^0.1.6-alpha.2",
238
- "@deepseek-ai/dsh-skill-filesystem": "^0.1.6-alpha.2",
239
- "@deepseek-ai/dsh-spill": "^0.1.6-alpha.2",
240
- "@deepseek-ai/dsh-spill-local": "^0.1.6-alpha.2",
241
- "@deepseek-ai/dsh-settings": "^0.1.6-alpha.2",
242
238
  "@deepseek-ai/dsh-skill-badge": "^0.1.6-alpha.2",
239
+ "@deepseek-ai/dsh-skill": "^0.1.6-alpha.2",
240
+ "@deepseek-ai/dsh-spill": "^0.1.6-alpha.2",
243
241
  "@deepseek-ai/dsh-spill-policy": "^0.1.6-alpha.2",
242
+ "@deepseek-ai/dsh-spill-local": "^0.1.6-alpha.2",
244
243
  "@deepseek-ai/dsh-storage": "^0.1.6-alpha.2",
245
244
  "@deepseek-ai/dsh-storage-domain": "^0.1.6-alpha.2",
245
+ "@deepseek-ai/dsh-skill-filesystem": "^0.1.6-alpha.2",
246
246
  "@deepseek-ai/dsh-storage-json": "^0.1.6-alpha.2",
247
- "@deepseek-ai/dsh-subagent-in-process-driver": "^0.1.6-alpha.2",
248
247
  "@deepseek-ai/dsh-subagent-fork-in-process": "^0.1.6-alpha.2",
249
- "@deepseek-ai/dsh-subagent": "^0.1.6-alpha.2",
248
+ "@deepseek-ai/dsh-subagent-in-process-driver": "^0.1.6-alpha.2",
250
249
  "@deepseek-ai/dsh-subagent-spawn-in-process": "^0.1.6-alpha.2",
251
- "@deepseek-ai/dsh-system-prompt": "^0.1.6-alpha.2",
250
+ "@deepseek-ai/dsh-subagent": "^0.1.6-alpha.2",
252
251
  "@deepseek-ai/dsh-subprocess": "^0.1.6-alpha.2",
253
252
  "@deepseek-ai/dsh-subprocess-local": "^0.1.6-alpha.2",
253
+ "@deepseek-ai/dsh-system-prompt": "^0.1.6-alpha.2",
254
+ "@deepseek-ai/dsh-terminal-bash": "^0.1.6-alpha.2",
254
255
  "@deepseek-ai/dsh-terminal": "^0.1.6-alpha.2",
255
256
  "@deepseek-ai/dsh-time-context": "^0.1.6-alpha.2",
256
- "@deepseek-ai/dsh-timeout": "^0.1.6-alpha.2",
257
257
  "@deepseek-ai/dsh-tmux-context": "^0.1.6-alpha.2",
258
- "@deepseek-ai/dsh-terminal-bash": "^0.1.6-alpha.2",
259
- "@deepseek-ai/dsh-token-meter": "^0.1.6-alpha.2",
260
- "@deepseek-ai/dsh-tool-ask-user": "^0.1.6-alpha.2",
258
+ "@deepseek-ai/dsh-timeout": "^0.1.6-alpha.2",
261
259
  "@deepseek-ai/dsh-tool-bash": "^0.1.6-alpha.2",
260
+ "@deepseek-ai/dsh-token-meter": "^0.1.6-alpha.2",
262
261
  "@deepseek-ai/dsh-tool-bash-persistent": "^0.1.6-alpha.2",
263
262
  "@deepseek-ai/dsh-tool-call-timeout-policy": "^0.1.6-alpha.2",
264
- "@deepseek-ai/dsh-tool-cordis": "^0.1.6-alpha.2",
265
263
  "@deepseek-ai/dsh-tool-fs": "^0.1.6-alpha.2",
266
- "@deepseek-ai/dsh-tool-fs-search": "^0.1.6-alpha.2",
264
+ "@deepseek-ai/dsh-tool-cordis": "^0.1.6-alpha.2",
265
+ "@deepseek-ai/dsh-tool-ask-user": "^0.1.6-alpha.2",
267
266
  "@deepseek-ai/dsh-tool-goal": "^0.1.6-alpha.2",
268
267
  "@deepseek-ai/dsh-tool-jobs": "^0.1.6-alpha.2",
268
+ "@deepseek-ai/dsh-tool-pwsh": "^0.1.6-alpha.2",
269
269
  "@deepseek-ai/dsh-tool-present": "^0.1.6-alpha.2",
270
270
  "@deepseek-ai/dsh-tool-pwsh-persistent": "^0.1.6-alpha.2",
271
271
  "@deepseek-ai/dsh-tool-ralph": "^0.1.6-alpha.2",
272
- "@deepseek-ai/dsh-tool-skill": "^0.1.6-alpha.2",
273
- "@deepseek-ai/dsh-tool-pwsh": "^0.1.6-alpha.2",
274
272
  "@deepseek-ai/dsh-tool-subagent": "^0.1.6-alpha.2",
275
273
  "@deepseek-ai/dsh-tool-str-replace-editor": "^0.1.6-alpha.2",
276
- "@deepseek-ai/dsh-tool-todo": "^0.1.6-alpha.2",
277
274
  "@deepseek-ai/dsh-tool-subagent-control": "^0.1.6-alpha.2",
278
- "@deepseek-ai/dsh-tool-web": "^0.1.6-alpha.2",
275
+ "@deepseek-ai/dsh-tool-skill": "^0.1.6-alpha.2",
276
+ "@deepseek-ai/dsh-tool-todo": "^0.1.6-alpha.2",
279
277
  "@deepseek-ai/dsh-tool-workflow": "^0.1.6-alpha.2",
280
- "@deepseek-ai/dsh-typert-loader": "^0.1.6-alpha.2",
281
278
  "@deepseek-ai/dsh-tools": "^0.1.6-alpha.2",
279
+ "@deepseek-ai/dsh-typert-loader": "^0.1.6-alpha.2",
280
+ "@deepseek-ai/dsh-tool-web": "^0.1.6-alpha.2",
282
281
  "@deepseek-ai/dsh-typert-protocol": "^0.1.6-alpha.2",
283
- "@deepseek-ai/dsh-user-approval": "^0.1.6-alpha.2",
284
- "@deepseek-ai/dsh-typert-registry": "^0.1.6-alpha.2",
285
282
  "@deepseek-ai/dsh-user-questions": "^0.1.6-alpha.2",
286
- "@deepseek-ai/dsh-util-crypto": "^0.1.6-alpha.2",
283
+ "@deepseek-ai/dsh-tool-fs-search": "^0.1.6-alpha.2",
284
+ "@deepseek-ai/dsh-typert-registry": "^0.1.6-alpha.2",
287
285
  "@deepseek-ai/dsh-util-values": "^0.1.6-alpha.2",
286
+ "@deepseek-ai/dsh-util-crypto": "^0.1.6-alpha.2",
287
+ "@deepseek-ai/dsh-util-workspace-path": "^0.1.6-alpha.2",
288
+ "@deepseek-ai/dsh-user-approval": "^0.1.6-alpha.2",
288
289
  "@deepseek-ai/dsh-web": "^0.1.6-alpha.2",
290
+ "@deepseek-ai/dsh-web-fetch-http": "^0.1.6-alpha.2",
289
291
  "@deepseek-ai/dsh-util-time": "^0.1.6-alpha.2",
290
292
  "@deepseek-ai/dsh-web-app": "^0.1.6-alpha.2",
291
- "@deepseek-ai/dsh-util-workspace-path": "^0.1.6-alpha.2",
292
- "@deepseek-ai/dsh-web-fetch-http": "^0.1.6-alpha.2",
293
293
  "@deepseek-ai/dsh-webhook": "^0.1.6-alpha.2",
294
- "@deepseek-ai/dsh-web-frontend": "^0.1.6-alpha.2",
294
+ "@deepseek-ai/dsh-web-search-deepseek": "^0.1.6-alpha.2",
295
295
  "@deepseek-ai/dsh-webhook-github": "^0.1.6-alpha.2",
296
- "@deepseek-ai/dsh-workflow": "^0.1.6-alpha.2",
297
- "@deepseek-ai/dsh-win32-process": "^0.1.6-alpha.2",
296
+ "@deepseek-ai/dsh-web-frontend": "^0.1.6-alpha.2",
298
297
  "@deepseek-ai/dsh-workflow-ptc": "^0.1.6-alpha.2",
299
- "@deepseek-ai/dsh-workspace-changes": "^0.1.6-alpha.2",
298
+ "@deepseek-ai/dsh-win32-process": "^0.1.6-alpha.2",
300
299
  "@deepseek-ai/dsh-workspace": "^0.1.6-alpha.2",
301
- "@deepseek-ai/schemastery": "^3.18.2",
302
- "@deepseek-ai/dsh-web-search-deepseek": "^0.1.6-alpha.2"
300
+ "@deepseek-ai/dsh-workspace-changes": "^0.1.6-alpha.2",
301
+ "@deepseek-ai/dsh-workflow": "^0.1.6-alpha.2",
302
+ "@deepseek-ai/schemastery": "^3.18.2"
303
303
  },
304
304
  "devDependencies": {
305
305
  "@agentclientprotocol/sdk": "1.4.0",
@@ -308,10 +308,10 @@
308
308
  "execa": "^10.0.0",
309
309
  "ws": "8.21.0",
310
310
  "@deepseek-ai/dsh-agent-loop-testkit": "^0.1.6-alpha.2",
311
- "@deepseek-ai/dsh-system-prompt": "^0.1.6-alpha.2",
312
311
  "@deepseek-ai/dsh-llm-mock-server": "^0.1.6-alpha.2",
312
+ "@deepseek-ai/dsh-loader-smoke": "^0.1.6-alpha.2",
313
313
  "@deepseek-ai/dsh-llm-replay": "^0.1.6-alpha.2",
314
- "@deepseek-ai/dsh-loader-smoke": "^0.1.6-alpha.2"
314
+ "@deepseek-ai/dsh-system-prompt": "^0.1.6-alpha.2"
315
315
  },
316
316
  "exports": {
317
317
  "./profile-boot": {