@1e0zj/dsh-plugin-mall 0.1.9 → 0.1.10
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 +123 -76
- package/package.json +1 -1
- package/src/client.js +8 -3
package/README.md
CHANGED
|
@@ -1,76 +1,123 @@
|
|
|
1
|
-
# dsh-plugin-mall
|
|
2
|
-
|
|
3
|
-
**dsh
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
#
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
1
|
+
# dsh-plugin-mall
|
|
2
|
+
|
|
3
|
+
**An open plugin marketplace for [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness) (dsh): search every GitHub repo tagged `topic:dsh-plugin`, automatically verify which ones are real dsh plugins, install and update with one click.**
|
|
4
|
+
|
|
5
|
+
[中文说明](#中文说明) · [Install](#install) · [Why another marketplace](#why-another-marketplace)
|
|
6
|
+
|
|
7
|
+
Two surfaces: a **Settings → Plugins → Marketplace** tab in the dsh web UI, and five agent tools usable from any session.
|
|
8
|
+
|
|
9
|
+
## Why another marketplace?
|
|
10
|
+
|
|
11
|
+
Curated lists only show what has been reviewed and merged. This marketplace is open by construction: **any repo tagged `topic:dsh-plugin` is discoverable the moment it is pushed** — no submission, no approval queue. To keep that openness usable:
|
|
12
|
+
|
|
13
|
+
- **Automatic verification** — every search result's `package.json` is fetched (jsDelivr/raw dual-source CDN, no API quota) and checked for the official `dsh.bundle` / `dsh.client` manifest. Verified plugins get a green badge; the default "verified only" view filters out ~73% of topic noise (empty repos and unrelated projects riding the tag).
|
|
14
|
+
- **Anti-squatting** — an install prefers the npm tarball only when the registry entry's `repository` URL points back to the same GitHub repo; anything else falls back to the explicit `github:` spec.
|
|
15
|
+
- **npm-first installs** — registry tarballs are smaller than whole-repo GitHub downloads and come with integrity checks.
|
|
16
|
+
- **Update management** — installed plugins are compared against the registry `latest`; one-click update per plugin.
|
|
17
|
+
- **Resilience** — rate-limit circuit breaker, GitHub's 1000-result search window handled gracefully, `corepack enable pnpm` self-heal when pnpm is missing, one-click dsh restart (loopback-only, `allowRestart: false` to disable).
|
|
18
|
+
|
|
19
|
+
## Install
|
|
20
|
+
|
|
21
|
+
```powershell
|
|
22
|
+
# from npm
|
|
23
|
+
dsh plugin --profile web add @1e0zj/dsh-plugin-mall
|
|
24
|
+
|
|
25
|
+
# from GitHub
|
|
26
|
+
dsh plugin --profile web add github:1e0zj/dsh-plugin-mall
|
|
27
|
+
|
|
28
|
+
# local development (symlink; restart dsh after edits)
|
|
29
|
+
dsh plugin --profile web add link:C:\path\to\dsh-plugin-mall
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Restart dsh after installing.
|
|
33
|
+
|
|
34
|
+
## Agent tools
|
|
35
|
+
|
|
36
|
+
| Tool | What it does |
|
|
37
|
+
|---|---|
|
|
38
|
+
| `market_search` | Search GitHub repos tagged `topic:dsh-plugin` (star-ranked, keyword filter, server-side `stars:>=1` noise floor) |
|
|
39
|
+
| `market_info` | Inspect one repo: stars, license, package.json, whether it declares `dsh.bundle.patch` / `dsh.client` |
|
|
40
|
+
| `market_install` | Install a plugin into a profile as a background job (npm-first spec resolution) |
|
|
41
|
+
| `market_uninstall` | Remove a plugin: `pnpm remove` + bundle-layer reconcile + client-row cleanup |
|
|
42
|
+
| `market_installed` | List a profile's installed plugins and their bundle status |
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
# 中文说明
|
|
47
|
+
|
|
48
|
+
**dsh 插件市场** — 搜索 GitHub `dsh-plugin` 话题下的 DeepSeek Harness 插件仓库,自动验证哪些是真 dsh 插件,一键安装与更新。
|
|
49
|
+
|
|
50
|
+
与策展列表不同:**任何打上 `topic:dsh-plugin` 的仓库推送后立即可被发现**——无需投稿、无需审批。为保证开放性可用,做了这些事:
|
|
51
|
+
|
|
52
|
+
- **自动验证**:逐仓库拉取 `package.json`(jsDelivr/raw 双源 CDN,不占 API 配额),按官方 `dsh.bundle` / `dsh.client` 声明打徽章;默认"只看已验证"视图过滤约 73% 的话题噪音
|
|
53
|
+
- **防抢注**:仅当 npm registry 条目的 `repository` 指回同一 GitHub 仓库时才用 npm 安装,否则回退 `github:` 源
|
|
54
|
+
- **npm 优先安装**:registry tarball 比整仓库下载更小且带完整性校验
|
|
55
|
+
- **更新管理**:已装插件与 registry `latest` 比对,逐个一键更新
|
|
56
|
+
- **工程韧性**:限流熔断、GitHub 1000 条搜索上限优雅处理、pnpm 缺失时 `corepack` 自愈、一键重启 dsh(仅 loopback,可 `allowRestart: false` 关闭)
|
|
57
|
+
|
|
58
|
+
## 安装
|
|
59
|
+
|
|
60
|
+
```powershell
|
|
61
|
+
# 从 npm
|
|
62
|
+
dsh plugin --profile web add @1e0zj/dsh-plugin-mall
|
|
63
|
+
|
|
64
|
+
# 从 GitHub
|
|
65
|
+
dsh plugin --profile web add github:1e0zj/dsh-plugin-mall
|
|
66
|
+
|
|
67
|
+
# 本地开发(软链,改代码后重启 dsh 即生效)
|
|
68
|
+
dsh plugin --profile web add link:C:\path\to\dsh-plugin-mall
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
装完**重启 dsh**(`dsh web` 进程)后生效。
|
|
72
|
+
|
|
73
|
+
> Windows 下用 `link:` 开发本插件时,Node 会从项目的真实路径加载模块,
|
|
74
|
+
> 因此项目目录里必须先装一次依赖(`npm install`),裸导入才能解析;
|
|
75
|
+
> 通过 npm/GitHub 安装时无此要求(pnpm 会把真实拷贝装进 profile 的 node_modules)。
|
|
76
|
+
|
|
77
|
+
## 工作原理
|
|
78
|
+
|
|
79
|
+
- 双面包(dual-face)插件:`dsh.bundle` 半边挂在 **host 平面**(profile bundle 层),
|
|
80
|
+
注册 5 个 agent 工具(进 global 层,所有会话可见,与 MCP 工具同理);
|
|
81
|
+
`dsh.client` 半边是浏览器插件,往设置页插件区注册「插件市场」tab
|
|
82
|
+
(`settings.plugins.tab` slot;手写无构建,经 `window.__ModuleLoader__` 加载)。
|
|
83
|
+
- 浏览器 → 服务端走 Connection 服务的独立 RPC 通道 `/market`
|
|
84
|
+
(loopback-only,与 `/api` 通道互不干扰);页面发起的安装任务用进程内
|
|
85
|
+
tracker 跟踪 —— web host 层没有 job 控制器,`ctx.jobs` 无法在会话外起任务。
|
|
86
|
+
- `market_install` 复刻官方 `dsh plugin add` 的流程:在 profile 目录跑
|
|
87
|
+
`pnpm add <spec>`,成功后把声明了 `dsh.bundle.patch` 的依赖登记进
|
|
88
|
+
`dsh.profile.bundles`(layer 列表),声明了 `dsh.client` 的依赖自动在
|
|
89
|
+
profile 的 `cordis.patch.yml` 注册加载行,与官方 reconcile 逻辑一致。
|
|
90
|
+
- `market_uninstall` 复刻官方 `dsh plugin remove` 的流程:在 profile 目录跑
|
|
91
|
+
`pnpm remove <package>`,成功后从 `dsh.profile.bundles` 剔除该依赖的
|
|
92
|
+
bundle 条目,并删掉 `cordis.patch.yml` 里由安装流程注册的客户端加载行
|
|
93
|
+
(文本级精准移除,用户手写的行不受影响)。
|
|
94
|
+
- 安装源解析:`github:owner/repo` 优先改写为同名 npm 包(仅当 registry
|
|
95
|
+
条目的 repository 指回该仓库,防止抢注),否则用 GitHub 全仓库 spec。
|
|
96
|
+
- GitHub 源的插件安装时要跑 prepare 构建脚本,pnpm 默认拦截;本插件检测到
|
|
97
|
+
拦截后会把包名自动合并进 profile 的 `pnpm-workspace.yaml` 的 `allowBuilds`
|
|
98
|
+
并自动重试一次(解析只认合法 npm 包名,写入一律加引号,不会写坏 YAML)。
|
|
99
|
+
- 配置(`cordis.patch.yml` 中可改):`defaultProfile`(默认装进哪个 profile,
|
|
100
|
+
默认 `web`)、`apiBase`(GitHub API 地址)、`perPageMax`(搜索单页上限)、
|
|
101
|
+
`allowRestart`(是否允许一键重启,默认 `true`)。
|
|
102
|
+
|
|
103
|
+
## 发布
|
|
104
|
+
|
|
105
|
+
```bash
|
|
106
|
+
npm publish --access public
|
|
107
|
+
# 或在 GitHub 建仓库并打上 topic:dsh-plugin
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## 开发说明
|
|
111
|
+
|
|
112
|
+
- 插件形态:`package.json` 里 `"dsh": { "bundle": { "patch": "./cordis.patch.yml" } }`,
|
|
113
|
+
patch 文件把 `dsh-plugin-mall` 这一行 insert 进装配树;**同一行同时是
|
|
114
|
+
client 插件行**(`dsh.client` 声明让 client-modules 扫描并服务
|
|
115
|
+
`/plugins/<id>/client.js`)。
|
|
116
|
+
- **`@deepseek-ai/*` 框架包必须声明为 `peerDependencies`**:装成 dependencies
|
|
117
|
+
会把宿主模块副本 hoist 进 profile,cordis loader 双副本加载、Symbol 身份
|
|
118
|
+
分裂,宿主的工具调度全线崩溃。宿主经 `profiles/node_modules` fallback
|
|
119
|
+
提供框架包。
|
|
120
|
+
- node 半边导出具名成员 `{ name, inject, Config, apply }`,**不要** `export default`
|
|
121
|
+
(cordis loader 会做 `exports.default ?? exports` 解包,default 会吞掉 inject/Config);
|
|
122
|
+
client 半边是 `window.__ModuleLoader__.load({id, factory})`,导出 `{ apply, inject }`。
|
|
123
|
+
- 单测 `src/github.js`(无 harness 依赖):`node src/github.js --self-test`。
|
package/package.json
CHANGED
package/src/client.js
CHANGED
|
@@ -147,8 +147,8 @@ window.__ModuleLoader__.load({
|
|
|
147
147
|
var item = props.item;
|
|
148
148
|
var installing = props.installing === true;
|
|
149
149
|
var job = props.installJob;
|
|
150
|
-
var installLabel = "安装";
|
|
151
|
-
var installDisabled = installing;
|
|
150
|
+
var installLabel = props.alreadyInstalled === true ? "已装" : "安装";
|
|
151
|
+
var installDisabled = installing || props.alreadyInstalled === true;
|
|
152
152
|
if (!installing && job) {
|
|
153
153
|
if (job.status === "running") { installLabel = "安装中…"; installDisabled = true; }
|
|
154
154
|
else if (job.status === "completed") { installLabel = "已装 · 重启生效"; installDisabled = true; }
|
|
@@ -534,12 +534,17 @@ window.__ModuleLoader__.load({
|
|
|
534
534
|
for (var jobId in jobs) {
|
|
535
535
|
if (jobs[jobId] && jobs[jobId].spec === "github:" + item.fullName) { installJob = jobs[jobId]; break; }
|
|
536
536
|
}
|
|
537
|
+
var vInfo = verified[item.fullName];
|
|
538
|
+
var alreadyInstalled = vInfo !== undefined && typeof vInfo.name === "string"
|
|
539
|
+
&& installed !== null && installed.error === undefined
|
|
540
|
+
&& (installed.deps || []).some(function (dep) { return dep.name === vInfo.name; });
|
|
537
541
|
return h(RepoCard, {
|
|
538
542
|
key: item.fullName,
|
|
539
543
|
item: item,
|
|
540
544
|
installing: installing[item.fullName] === true || installing["github:" + item.fullName] === true,
|
|
541
545
|
installJob: installJob,
|
|
542
|
-
verified:
|
|
546
|
+
verified: vInfo,
|
|
547
|
+
alreadyInstalled: alreadyInstalled,
|
|
543
548
|
onInstall: doInstall,
|
|
544
549
|
});
|
|
545
550
|
}),
|