@sparkelf/dsh-plus 0.1.0-rc.10 → 0.1.0-rc.11

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/README.i18n.yaml CHANGED
@@ -2,5 +2,5 @@
2
2
  # side as of the last confirmed-consistent state. Both languages carry equal authority;
3
3
  # after editing either side, bring the other along and re-record with:
4
4
  # pnpm run verify-translation-pairing --write packages/bundle/plus/README.md
5
- README.md: 627a5b3d23b642d2c7b92926133435ae82ae2c15
6
- README.zh.md: 1eaced04cf003ed2ef4485e6dedfcf5cfb4656ca
5
+ README.md: a48ce3e778e2cf121f9abfe1cb12fbe1a4ec7c9a
6
+ README.zh.md: 0fd4947ad19983bb44fcf69b3c148e3eccb043e4
package/README.md CHANGED
@@ -31,7 +31,7 @@ dsh plugin --profile plus exec dsh-plus apply --dsh-root /path/to/official-dsh
31
31
  dsh --profile plus
32
32
  ```
33
33
 
34
- The explicit apply step requires official revision `cd5ef8148158c3a752a658978873241fdf8e2bbc`, materializes every selected runtime package as a profile-direct dependency, applies all pending source payloads together, configures exact npm patches, removes retired Plus-owned entries, and writes `.dsh-plus/patchset.lock.json` with mode `0600`. It installs `dsh-better-sidebar@0.17.1` at the profile root, explicitly allows only its `node-pty` native build, and links the profile's `@deepseek-ai` scope to the exact official source dependencies. Version conflicts and source mismatches fail before profile installation or source mutation. The package has no install lifecycle script.
34
+ The explicit apply step requires official revision `cd5ef8148158c3a752a658978873241fdf8e2bbc`, materializes every selected runtime package as a profile-direct dependency, applies all pending source payloads together, configures exact npm patches, removes retired Plus-owned entries, and writes `.dsh-plus/patchset.lock.json` with mode `0600`. It installs `dsh-better-sidebar@0.17.1` at the profile root, explicitly allows only its `node-pty` native build, and links the profile's `@deepseek-ai` scope to the exact official dsh CLI dependency tree at `apps/cli/node_modules/@deepseek-ai`. Version conflicts and source mismatches fail before profile installation or source mutation. The package has no install lifecycle script.
35
35
 
36
36
  Official DSH supplies onboarding, Workspace selection, Session export, Turn folding, and the base image path. The external `@changfenhuang/dsh-genui` bundle owns generated UI, including inline interactive charts emitted by the model as `dsh-ui`. The temporary GenUI streaming EChart patch targets only `0.9.6` and retires after [upstream PR #87](https://github.com/omdsh-dev/dsh-genui/pull/87) ships in npm and the real inline-chart path passes. DataOps and Document Attachments mount only when their endpoint environment variables exist. Agent Teams is excluded because the official packages are private experimental workspaces and shipped profiles disable them.
37
37
 
package/README.zh.md CHANGED
@@ -31,7 +31,7 @@ dsh plugin --profile plus exec dsh-plus apply --dsh-root /path/to/official-dsh
31
31
  dsh --profile plus
32
32
  ```
33
33
 
34
- explicit apply步骤要求official revision `cd5ef8148158c3a752a658978873241fdf8e2bbc`,把每个selected runtime package materialize为profile-direct dependency,一次应用全部pending source payloads,配置exact npm patches,删除retired Plus-owned entries,并以`0600` mode写入`.dsh-plus/patchset.lock.json`。它在profile root安装`dsh-better-sidebar@0.17.1`,只显式允许其`node-pty` native build,并把profile的`@deepseek-ai` scope链接到exact official source dependencies。version conflict和source mismatch会在profile installation或source mutation前失败。该package没有install lifecycle script。
34
+ explicit apply步骤要求official revision `cd5ef8148158c3a752a658978873241fdf8e2bbc`,把每个selected runtime package materialize为profile-direct dependency,一次应用全部pending source payloads,配置exact npm patches,删除retired Plus-owned entries,并以`0600` mode写入`.dsh-plus/patchset.lock.json`。它在profile root安装`dsh-better-sidebar@0.17.1`,只显式允许其`node-pty` native build,并把profile的`@deepseek-ai` scope链接到`apps/cli/node_modules/@deepseek-ai`中的exact official dsh CLI dependency tree。version conflict和source mismatch会在profile installation或source mutation前失败。该package没有install lifecycle script。
35
35
 
36
36
  Official DSH提供onboarding、Workspace selection、Session export、Turn folding及base image path。External `@changfenhuang/dsh-genui` bundle拥有generated UI,包括模型以`dsh-ui`输出的inline interactive charts。Temporary GenUI streaming EChart patch只target `0.9.6`;[upstream PR #87](https://github.com/omdsh-dev/dsh-genui/pull/87)进入npm且真实inline-chart path通过后退役。DataOps和Document Attachments仅在对应endpoint environment variables存在时mount。Agent Teams被排除,因为official packages属于private experimental workspaces且shipped profiles会禁用它们。
37
37
 
package/lib/apply.js CHANGED
@@ -384,8 +384,11 @@ function applySelectedPatches(profileDirectory, dshRoot, patches, profileChanged
384
384
  if (sourceFiles.length > 0) git(dshRoot, ["apply", ...sourceFiles]);
385
385
  if (stablePatches.some((patch) => patch.target.kind === "dsh-source")) runPnpm(dshRoot, ["run", "build"], "official DSH build after source patches");
386
386
  }
387
+ function officialPackageRoot(dshRoot) {
388
+ return resolve(dshRoot, "apps", "cli");
389
+ }
387
390
  function linkOfficialPackages(profileDirectory, dshRoot) {
388
- const source = resolve(dshRoot, "node_modules", "@deepseek-ai");
391
+ const source = resolve(officialPackageRoot(dshRoot), "node_modules", "@deepseek-ai");
389
392
  if (!existsSync(source)) throw new Error("official DSH dependencies are missing under " + source);
390
393
  const destination = resolve(profileDirectory, "node_modules", "@deepseek-ai");
391
394
  rmSync(destination, {
@@ -433,7 +436,7 @@ function runApply(argv) {
433
436
  bundles: selection.bundles.map((name) => {
434
437
  return {
435
438
  name,
436
- version: (installedProfileDependencies[name] === void 0 ? resolveInstalledPackage(dshRoot, name) : resolveInstalledPackage(profileDirectory, name)).version
439
+ version: (installedProfileDependencies[name] === void 0 ? resolveInstalledPackage(officialPackageRoot(dshRoot), name) : resolveInstalledPackage(profileDirectory, name)).version
437
440
  };
438
441
  }),
439
442
  dependencies: selection.profileDependencies,
package/package.json CHANGED
@@ -5,20 +5,20 @@
5
5
  "dependencies": {
6
6
  "@changfenhuang/dsh-genui": ">=0.9.6",
7
7
  "@sparkelf/dsh-mobile-bridge": ">=0.2.8",
8
- "@sparkelf/dsh-patch-better-sidebar-app-frame": ">=0.1.0-rc.10",
9
- "@sparkelf/dsh-patch-document-attachments": ">=0.1.0-rc.10",
10
- "@sparkelf/dsh-patch-genui-streaming-echart": ">=0.1.0-rc.10",
11
- "@sparkelf/dsh-patch-mobile-bridge-serialized-actions": ">=0.1.0-rc.10",
12
- "@sparkelf/dsh-patch-mobile-web-layout": ">=0.1.0-rc.10",
13
- "@sparkelf/dsh-patch-responses-reasoning-status": ">=0.1.0-rc.10",
14
- "@sparkelf/dsh-patch-subagent-settings-presets": ">=0.1.0-rc.10",
15
- "@sparkelf/dsh-patch-web-base-path": ">=0.1.0-rc.10",
16
- "@sparkelf/dsh-patch-workspace-storage-restore": ">=0.1.0-rc.10",
17
- "@sparkelf/dsh-plugin-backup": ">=0.1.0-rc.10",
18
- "@sparkelf/dsh-plugin-dataops": ">=0.1.0-rc.10",
19
- "@sparkelf/dsh-plugin-document-attachments": ">=0.1.0-rc.10",
20
- "@sparkelf/dsh-plugin-mcp-credentials": ">=0.1.0-rc.10",
21
- "@sparkelf/dsh-plugin-subagent-settings": ">=0.1.0-rc.10",
8
+ "@sparkelf/dsh-patch-better-sidebar-app-frame": ">=0.1.0-rc.11",
9
+ "@sparkelf/dsh-patch-document-attachments": ">=0.1.0-rc.11",
10
+ "@sparkelf/dsh-patch-genui-streaming-echart": ">=0.1.0-rc.11",
11
+ "@sparkelf/dsh-patch-mobile-bridge-serialized-actions": ">=0.1.0-rc.11",
12
+ "@sparkelf/dsh-patch-mobile-web-layout": ">=0.1.0-rc.11",
13
+ "@sparkelf/dsh-patch-responses-reasoning-status": ">=0.1.0-rc.11",
14
+ "@sparkelf/dsh-patch-subagent-settings-presets": ">=0.1.0-rc.11",
15
+ "@sparkelf/dsh-patch-web-base-path": ">=0.1.0-rc.11",
16
+ "@sparkelf/dsh-patch-workspace-storage-restore": ">=0.1.0-rc.11",
17
+ "@sparkelf/dsh-plugin-backup": ">=0.1.0-rc.11",
18
+ "@sparkelf/dsh-plugin-dataops": ">=0.1.0-rc.11",
19
+ "@sparkelf/dsh-plugin-document-attachments": ">=0.1.0-rc.11",
20
+ "@sparkelf/dsh-plugin-mcp-credentials": ">=0.1.0-rc.11",
21
+ "@sparkelf/dsh-plugin-subagent-settings": ">=0.1.0-rc.11",
22
22
  "dshmarket": ">=1.29.2",
23
23
  "semver": ">=7.7.3",
24
24
  "yaml": ">=2.9.0"
@@ -113,5 +113,5 @@
113
113
  },
114
114
  "type": "module",
115
115
  "types": "lib/types/index.d.ts",
116
- "version": "0.1.0-rc.10"
116
+ "version": "0.1.0-rc.11"
117
117
  }