dshmarket 1.34.0 → 1.36.0

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.md CHANGED
@@ -115,6 +115,10 @@ DSHM_REGISTRY_URL=https://your-mirror.example/plugins.json dsh web
115
115
 
116
116
  [dsh-app](https://github.com/RyensX/dsh-app) — a DeepSeek Harness desktop client built on Tauri 2 rather than Electron, so it ships a much smaller binary and uses the system webview. AGPL-3.0.
117
117
 
118
+ ### Local DSH
119
+
120
+ [local-dsh](https://github.com/liangchen-harold/local-dsh) — a DeepSeek Harness desktop client that can run the model on your own machine: it bundles llama.cpp next to Node, pnpm and DSH, so a downloaded GGUF model answers without any external API. Built on Tauri; Apple Silicon Macs for now. [localdsh.com](https://localdsh.com)
121
+
118
122
  ### DSH Get
119
123
 
120
124
  [DSH Get](https://www.dshget.com/) — a searchable web directory for discovering DeepSeek Harness plugins: category filters, bilingual descriptions, install commands and per-plugin detail pages. Its normalized catalog snapshot is public at [bobby-sheng/dshget-data](https://github.com/bobby-sheng/dshget-data).
package/README.zh.md CHANGED
@@ -112,6 +112,10 @@ DSHM_REGISTRY_URL=https://your-mirror.example/plugins.json dsh web
112
112
 
113
113
  [dsh-app](https://github.com/RyensX/dsh-app)——基于 Tauri 2(而非 Electron)的 DeepSeek Harness 桌面客户端,因此安装包小得多,界面走系统 webview。AGPL-3.0。
114
114
 
115
+ ### Local DSH
116
+
117
+ [local-dsh](https://github.com/liangchen-harold/local-dsh)——可以把模型跑在本机的 DeepSeek Harness 桌面客户端:发行包内置 llama.cpp 与 Node、pnpm、DSH,下载一个 GGUF 模型就能对话,不必接外部 API。基于 Tauri 构建;目前支持 Apple 芯片的 Mac。[localdsh.com](https://localdsh.com)
118
+
115
119
  ### DSH Get
116
120
 
117
121
  [DSH Get](https://www.dshget.com/)——DeepSeek Harness 插件的网页检索目录:分类筛选、中英描述、安装命令与插件详情页;其规范化的目录快照公开在 [bobby-sheng/dshget-data](https://github.com/bobby-sheng/dshget-data)。
package/UPDATE-API-V1.md CHANGED
@@ -74,6 +74,23 @@ pnpm provides it. Terminal operations include:
74
74
  - a stable failure code, bounded user-facing message and retryability;
75
75
  - whether a compatibility rollback is currently available.
76
76
 
77
+ For npm updates, Market verifies the package version that pnpm actually placed
78
+ on disk before reporting success. This prevents pnpm's release-age policy or a
79
+ lagging registry mirror from silently turning `@latest` into an older or
80
+ unexpected build. A mismatch is restored from the pre-update recovery point
81
+ and reported as one of these stable failures:
82
+
83
+ - `DOWNGRADE_DETECTED`: the resolved version is older than the version present
84
+ before the operation; not retryable without a new target.
85
+ - `RESOLVED_VERSION_MISMATCH`: the resolved version is BELOW the registry
86
+ target checked immediately before installation; retryable after registry or
87
+ mirror convergence. A version above that target is accepted — `latest` can
88
+ move forward while the install is still running.
89
+
90
+ Provider clients should still compare `beforeVersion`, the target they showed
91
+ to the user, and `installedVersion` before offering restart. That independent
92
+ check protects clients connected to another compatible provider implementation.
93
+
77
94
  Up to 50 operation records live in the current Host process. A boot id is
78
95
  embedded in every operation id, so a client never mistakes a stale browser
79
96
  record for a task belonging to the replacement process.