dshmarket 1.5.1 → 1.7.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 +18 -1
- package/README.zh.md +16 -1
- package/client/client.js +428 -75
- package/client/client.js.map +1 -1
- package/lib/backup.js +309 -0
- package/lib/dsh-cli.js +239 -33
- package/lib/http.js +2 -2
- package/lib/index.js +35 -5
- package/lib/install.js +10 -8
- package/lib/profile.js +20 -14
- package/lib/routes.js +231 -52
- package/lib/themes.js +5 -5
- package/lib/types/backup.d.ts +57 -0
- package/lib/types/dsh-cli.d.ts +46 -0
- package/lib/types/http.d.ts +1 -1
- package/lib/types/index.d.ts +1 -1
- package/lib/types/install.d.ts +2 -2
- package/lib/types/profile.d.ts +12 -8
- package/lib/types/routes.d.ts +4 -1
- package/lib/types/themes.d.ts +1 -1
- package/lib/types/updates.d.ts +1 -1
- package/lib/types/verify.d.ts +1 -1
- package/lib/updates.js +9 -7
- package/lib/verify.js +12 -11
- package/package.json +1 -1
- package/src/backup.ts +311 -0
- package/src/client/Market.module.css +14 -0
- package/src/client/MarketSection.tsx +197 -8
- package/src/client/locales.ts +50 -0
- package/src/dsh-cli.ts +294 -33
- package/src/http.ts +2 -2
- package/src/index.ts +52 -8
- package/src/install.ts +10 -8
- package/src/profile.ts +19 -14
- package/src/routes.ts +237 -50
- package/src/themes.ts +10 -5
- package/src/updates.ts +15 -8
- package/src/verify.ts +12 -10
package/README.md
CHANGED
|
@@ -25,6 +25,23 @@ dsh plugin --profile web add dshmarket
|
|
|
25
25
|
|
|
26
26
|
Restart `dsh web`, then open **Settings → Plugin Market**.
|
|
27
27
|
|
|
28
|
+
### DSH Desktop
|
|
29
|
+
|
|
30
|
+
On DSH Desktop builds that expose the public `desktopProfiles` and
|
|
31
|
+
`desktopPnpm` services, install from **Open DSH Terminal** with:
|
|
32
|
+
|
|
33
|
+
```sh
|
|
34
|
+
dsh plugin add dshmarket
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
The market automatically targets the immutable active Desktop profile and
|
|
38
|
+
uses Desktop's packaged pnpm operation service. It does not probe or install a
|
|
39
|
+
system pnpm, and Desktop keeps ownership of application restart. Ordinary DSH
|
|
40
|
+
continues to use the existing profile/argv/CLI path when those services are
|
|
41
|
+
absent. The detection order follows Desktop's supported
|
|
42
|
+
[cross-environment plugin contract](https://github.com/anywhere-labs/deepseek-harness-desktop/blob/4f68147091e585aaa1d815f99d30a657b3842d7c/dsh-plugin-desktop/docs/plugin-services.md#cross-environment-plugin-optional-desktop-adapter-and-ordinary-dsh-fallback).
|
|
43
|
+
This compatibility does not mean the market is bundled with Desktop.
|
|
44
|
+
|
|
28
45
|
## What you get
|
|
29
46
|
|
|
30
47
|
- **Browse & search** the full community catalog (300+ plugins, growing daily) — category filters, star counts, top/new sorting, bilingual descriptions that follow your UI language
|
|
@@ -68,7 +85,7 @@ Live from [awesome-dsh-plugin.com/plugins.json](https://awesome-dsh-plugin.com/p
|
|
|
68
85
|
|
|
69
86
|
### DeepSeek Harness Desktop
|
|
70
87
|
|
|
71
|
-
[DeepSeek Harness Desktop](https://github.com/anywhere-labs/deepseek-harness-desktop) is a modern desktop client for the DeepSeek Harness ecosystem — start and manage a local Harness service without
|
|
88
|
+
[DeepSeek Harness Desktop](https://github.com/anywhere-labs/deepseek-harness-desktop) is a modern desktop client for the DeepSeek Harness ecosystem — start and manage a local Harness service without a system Node.js installation. Compatible builds can host a user-installed dsh-market through their public profile and package-operation services; bundling remains a Desktop project decision.
|
|
72
89
|
|
|
73
90
|
[Website](https://www.dshdesktop.cn) · [GitHub](https://github.com/anywhere-labs/deepseek-harness-desktop)
|
|
74
91
|
|
package/README.zh.md
CHANGED
|
@@ -25,6 +25,21 @@ dsh plugin --profile web add dshmarket
|
|
|
25
25
|
|
|
26
26
|
重启 `dsh web`,打开 **设置 → 插件市场**。
|
|
27
27
|
|
|
28
|
+
### DSH Desktop
|
|
29
|
+
|
|
30
|
+
如果 DSH Desktop 版本提供公开的 `desktopProfiles` 与 `desktopPnpm`
|
|
31
|
+
服务,可从 **Open DSH Terminal** 安装:
|
|
32
|
+
|
|
33
|
+
```sh
|
|
34
|
+
dsh plugin add dshmarket
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
市场会自动使用该代 Desktop 已锁定的活动 profile,以及 Desktop 内置的
|
|
38
|
+
pnpm 操作服务;不会探测或安装系统 pnpm,应用重启仍由 Desktop 负责。
|
|
39
|
+
没有这些服务的普通 DSH 会继续使用现有 profile/argv/CLI 路径。检测顺序遵循
|
|
40
|
+
Desktop 支持的[跨环境插件 contract](https://github.com/anywhere-labs/deepseek-harness-desktop/blob/4f68147091e585aaa1d815f99d30a657b3842d7c/dsh-plugin-desktop/docs/plugin-services.zh.md#跨环境插件可选-desktop-adapter-与普通-dsh-fallback)。
|
|
41
|
+
兼容 Desktop 并不代表市场已预装或捆绑进 Desktop。
|
|
42
|
+
|
|
28
43
|
## 你会得到
|
|
29
44
|
|
|
30
45
|
- **逛与搜**——完整社区目录(300+ 插件,每天在涨),分类筛选、star 数、最热/最新排序,中英描述跟随界面语言
|
|
@@ -68,7 +83,7 @@ dsh plugin --profile web add dshmarket
|
|
|
68
83
|
|
|
69
84
|
### DeepSeek Harness Desktop
|
|
70
85
|
|
|
71
|
-
[DeepSeek Harness Desktop](https://github.com/anywhere-labs/deepseek-harness-desktop) 是一款为 DeepSeek Harness
|
|
86
|
+
[DeepSeek Harness Desktop](https://github.com/anywhere-labs/deepseek-harness-desktop) 是一款为 DeepSeek Harness 生态打造的现代化桌面端,无需在系统中安装 Node.js 即可启动和管理本地 Harness 服务。兼容版本可通过公开的 profile 与包操作服务运行用户自行安装的 dsh-market;是否预装仍由 Desktop 项目决定。
|
|
72
87
|
|
|
73
88
|
[访问官网](https://www.dshdesktop.cn) · [GitHub](https://github.com/anywhere-labs/deepseek-harness-desktop)
|
|
74
89
|
|