@linxin666/dsh-client-ui-community-plugins 0.2.9 → 0.3.1
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 +2 -2
- package/README.md +9 -35
- package/README.zh.md +9 -35
- package/community.json +381 -0
- package/cordis.patch.yml +6 -10
- package/lib/index.js +5 -23
- package/package.json +5 -13
- package/lib/client.js +0 -2023
- package/lib/client.js.map +0 -1
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
|
# node scripts/verify-docs.mjs --write <dir>
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: 7ce1eb4c0442836ddf8b37e25dd895c405dccf33
|
|
6
|
+
README.zh.md: 3df8218ae21ffbe0bea8f854c2da0a0b9c0b3769
|
package/README.md
CHANGED
|
@@ -2,48 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
English | [中文](README.zh.md)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
The community plugin index data source of the dsh web ecosystem: `community.json` is the single source of the Workshop store plugin catalog and the dsh-market.com plugin manifest (`manifest/plugins.json`). Entries only carry links and metadata pointing at each third-party plugin author's own repository — this repository never vendors their code.
|
|
6
6
|
|
|
7
7
|
## What it does
|
|
8
8
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
- **Index only**: every entry links to the contributor's own repository; the package never vendors the listed code. The registry lives in community.json and is compiled into the client bundle by scripts/community-index.
|
|
9
|
+
- Index data: `community.json` is merged by maintainer review (see the "社区插件索引登记" section of [docs/plugins.md](../../docs/plugins.md)); every entry requires `id` / `name` / `nameEn` / `author` / `repo` plus optional `description` / `descriptionEn` / `npm` / `category`.
|
|
10
|
+
- Consumers: `scripts/market-build` derives the Workshop store and dsh-market.com plugin manifests from this file.
|
|
11
|
+
- Validation: `node scripts/community-index` checks the index contract (the `pnpm community:check` CI gate runs the same check).
|
|
12
|
+
- No settings surface: this package no longer ships any UI (the community plugin card was replaced by the Workshop store's plugin catalog); the inert cordis row only keeps existing profiles and the aggregate resolving it — it contributes no UI after install.
|
|
14
13
|
|
|
15
14
|
## Install
|
|
16
15
|
|
|
17
|
-
|
|
16
|
+
This package does not need a direct install; it ships with the repository as the index data source.
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
dsh plugin --profile web add @linxin666/dsh-client-ui-community-plugins@latest
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
### From the repository (development)
|
|
24
|
-
|
|
25
|
-
```sh
|
|
26
|
-
git clone https://github.com/zhu1090093659/dsh-web-ui.git
|
|
27
|
-
cd dsh-web-ui
|
|
28
|
-
pnpm install && pnpm -r build
|
|
29
|
-
dsh plugin --profile web add link:$(pwd)/packages/dsh-community-plugins
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
Restart `dsh web` for the card to appear in the settings page.
|
|
33
|
-
|
|
34
|
-
## Config
|
|
35
|
-
|
|
36
|
-
- **Enable switch**: inside the Community Plugins first-level section itself (the section carries its own switch). Turning it off hides the index list until it is turned back on; the choice persists in the community-plugins settings namespace.
|
|
37
|
-
- **Category filter**: entries may carry a `category` in community.json — one of the fixed marketplace categories `ui`, `agent`, `tools`, `knowledge`, `integration`, `security` or `utility`. The card renders them as filter pills with counts, plus a search box over names, descriptions and authors; the "npm published / repo install" marker on each card comes from the `npm` field.
|
|
38
|
-
- **Running a listed plugin**: with the Plugin manager plugin installed and a local (loopback) browser, click Install on a card — the entry's npm package is used when published, else the contributor repository URL. Without it, copy the card's install command into a terminal, e.g. `dsh plugin --profile web add <name>`. Either way the install takes effect after restarting `dsh web`, and the plugin then provides its own switch and config (if any) in the plugin configuration section. Uninstall from a card requires the same confirmation and likewise applies on restart.
|
|
18
|
+
Profiles that still mount the old card (for example through the aggregate) can uninstall `@linxin666/dsh-client-ui-community-plugins` from the plugin manager tab in the official Plugins section (effective on next start).
|
|
39
19
|
|
|
40
20
|
## Known limitations
|
|
41
21
|
|
|
42
|
-
- The
|
|
43
|
-
-
|
|
44
|
-
- Installs and uninstalls staged from the card take effect only after restarting `dsh web` (the "installed" badge says so on the card).
|
|
45
|
-
- Entries are curated by maintainers in community.json; the card ships the build-time snapshot.
|
|
46
|
-
|
|
47
|
-
## License
|
|
48
|
-
|
|
49
|
-
BSD-3-Clause.
|
|
22
|
+
- The index only carries links; it does not validate third-party code quality or security, and each entry belongs to its original author.
|
|
23
|
+
- Making a new entry reach the Workshop site and the store requires running `node scripts/market-build` and committing the generated `market/dist` (the `market:check` gate).
|
package/README.zh.md
CHANGED
|
@@ -2,48 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
[English](README.md) | 中文
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
dsh web 生态的社区插件索引数据源:`community.json` 是创意工坊商店插件目录与 dsh-market.com 插件清单(`manifest/plugins.json`)的唯一来源。条目只收录第三方插件作者的仓库链接与元数据——本仓库从不搬运它们的代码。
|
|
6
6
|
|
|
7
7
|
## 功能
|
|
8
8
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
- **只做索引**:每个条目链接到贡献者自己的仓库;本包不打包任何被索引的代码。注册表在 community.json,由 scripts/community-index 编译进客户端 bundle。
|
|
9
|
+
- 索引数据:`community.json` 由维护者审核合并(流程见 [docs/plugins.md](../../docs/plugins.md) 的「社区插件索引登记」),每条包含 `id` / `name` / `nameEn` / `author` / `repo`(必填)与 `description` / `descriptionEn` / `npm` / `category`(可选)。
|
|
10
|
+
- 消费方:`scripts/market-build` 从本文件派生出创意工坊商店与 dsh-market.com 的插件清单。
|
|
11
|
+
- 校验:`node scripts/community-index` 对索引执行契约校验(CI 门禁 `pnpm community:check` 同款)。
|
|
12
|
+
- 无设置面:本包不再提供任何设置界面(社区插件卡已被创意工坊商店的插件目录取代);保留 inert cordis 行只是为了让既有 profile 与聚合包继续解析该行,安装后无任何 UI。
|
|
14
13
|
|
|
15
14
|
## 安装
|
|
16
15
|
|
|
17
|
-
|
|
16
|
+
本包无需直接安装;它以索引数据源身份随仓库发布。
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
dsh plugin --profile web add @linxin666/dsh-client-ui-community-plugins@latest
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
### 从仓库安装(开发调试)
|
|
24
|
-
|
|
25
|
-
```sh
|
|
26
|
-
git clone https://github.com/zhu1090093659/dsh-web-ui.git
|
|
27
|
-
cd dsh-web-ui
|
|
28
|
-
pnpm install && pnpm -r build
|
|
29
|
-
dsh plugin --profile web add link:$(pwd)/packages/dsh-community-plugins
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
安装后重启 `dsh web`,设置页出现该卡片。
|
|
33
|
-
|
|
34
|
-
## 配置
|
|
35
|
-
|
|
36
|
-
- **启用开关**:位于「社区插件」一级分区自身(分区卡片自带的开关)。关闭后隐藏索引列表,重新打开即恢复;选择持久化在 community-plugins 设置命名空间。
|
|
37
|
-
- **分类筛选**:条目可在 community.json 中带 `category`(固定市场分类之一:`ui`、`agent`、`tools`、`knowledge`、`integration`、`security` 或 `utility`),卡片将它们渲染为带计数的筛选胶囊,并提供按名称 / 简介 / 作者搜索的搜索框;每张卡片上的「npm 已发布 / 仓库安装」标记来自 `npm` 字段。
|
|
38
|
-
- **运行已登记的插件**:已安装插件管理器插件且使用本机(回环)浏览器时,直接点击卡片上的「安装」——条目已发布 npm 时用包名,否则用贡献者仓库地址。未安装时,复制卡片上的安装命令到终端执行,如 `dsh plugin --profile web add <包名>`。两种方式都在重启 `dsh web` 后生效,随后插件自带的开关与配置(若有)出现在插件配置区。从卡片卸载同样需要确认,同样在重启后生效。
|
|
18
|
+
既有 profile 若仍挂载旧卡(如聚合包),可在官方「插件」分区的插件管理 Tab 中卸载 `@linxin666/dsh-client-ui-community-plugins`(下次启动生效)。
|
|
39
19
|
|
|
40
20
|
## 已知限制
|
|
41
21
|
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
- 从卡片发起的安装与卸载在重启 `dsh web` 后才生效(卡片上的「已安装」徽标已注明)。
|
|
45
|
-
- 条目由维护者在 community.json 中登记审核,卡片展示构建时的快照。
|
|
46
|
-
|
|
47
|
-
## License
|
|
48
|
-
|
|
49
|
-
BSD-3-Clause。
|
|
22
|
+
- 索引只收录链接,不校验第三方代码质量与安全;条目版权归原作者。
|
|
23
|
+
- 新条目进入创意工坊站与商店需运行 `node scripts/market-build` 并提交生成的 `market/dist`(`market:check` 门禁)。
|
package/community.json
ADDED
|
@@ -0,0 +1,381 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "dsh-data-agent",
|
|
4
|
+
"name": "Data Agent",
|
|
5
|
+
"nameEn": "Data Agent",
|
|
6
|
+
"author": "omdsh-dev",
|
|
7
|
+
"description": "为 DSH 定义专用 Data Agent 预设,让 AI 帮你查询、更新、分析数据。",
|
|
8
|
+
"descriptionEn": "Defines a dedicated Data Agent preset for DSH so the AI can query, update and analyze data.",
|
|
9
|
+
"repo": "https://github.com/omdsh-dev/dsh-data-agent",
|
|
10
|
+
"category": "agent"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"id": "dsh-tui",
|
|
14
|
+
"name": "dsh-TUI",
|
|
15
|
+
"nameEn": "dsh-TUI",
|
|
16
|
+
"author": "ccch1mneyyy",
|
|
17
|
+
"description": "Claude Code 风格全屏交互终端插件:像素鲸鱼顶栏、实时工作状态行、思考流式展开、双击 Esc 回滚、上下文进度条与 TPS 仪表。",
|
|
18
|
+
"descriptionEn": "A Claude Code style fullscreen interactive terminal plugin: pixel-whale header, live working-state line, streaming reasoning expansion, double-Esc rollback, context progress bar and TPS gauges.",
|
|
19
|
+
"repo": "https://github.com/ccch1mneyyy/dsh-TUI",
|
|
20
|
+
"npm": "@deepseek-harness-tui/dsh-tui",
|
|
21
|
+
"category": "ui"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "dsh-tianshu-tui",
|
|
25
|
+
"name": "天书 TUI",
|
|
26
|
+
"nameEn": "Tianshu TUI",
|
|
27
|
+
"author": "huiliyi37",
|
|
28
|
+
"description": "基于官方 DeepSeek Harness 的交互式终端 UI 插件,在官方基础上增加 TDD 与证据门等工作流。",
|
|
29
|
+
"descriptionEn": "An interactive terminal UI plugin for DeepSeek Harness that adds TDD and evidence-gate workflows on top of the official base.",
|
|
30
|
+
"repo": "https://github.com/huiliyi37/dsh-tianshu-tui",
|
|
31
|
+
"category": "ui"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"id": "dsh-builtin-toggles",
|
|
35
|
+
"name": "内置能力检查器",
|
|
36
|
+
"nameEn": "Built-in Capability Inspector",
|
|
37
|
+
"author": "Starfie1d1272",
|
|
38
|
+
"description": "Evidence-backed 内置 capability Inspector:展示 DSH Web built-in capability 的 provenance、compatibility 与 structural drift;仅对 9 个经过审阅的 UI leaves 提供 fail-closed 开关。",
|
|
39
|
+
"descriptionEn": "Evidence-backed built-in capability Inspector: surfaces provenance, compatibility and structural drift of DSH Web built-ins, with fail-closed toggles for only the nine reviewed UI leaves.",
|
|
40
|
+
"repo": "https://github.com/Starfie1d1272/dsh-builtin-toggles",
|
|
41
|
+
"npm": "dsh-builtin-toggles",
|
|
42
|
+
"category": "tools"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "dsh-pilot",
|
|
46
|
+
"name": "Pilot 浏览器驾驶舱",
|
|
47
|
+
"nameEn": "Pilot Browser Cockpit",
|
|
48
|
+
"author": "guo6x",
|
|
49
|
+
"description": "给 agent 一双会开车的手:零依赖 CDP 浏览器操控(8 个 pilot_* 工具:导航/点击/输入/按键/JS/截图)+ Web GUI 可拖拽驾驶舱面板,无需 Playwright、无需 API key。",
|
|
50
|
+
"descriptionEn": "Give your agent hands: zero-dependency CDP browser control (8 pilot_* tools: navigate/click/type/keys/eval/screenshot) plus a draggable cockpit panel in the Web GUI - no Playwright, no API key.",
|
|
51
|
+
"repo": "https://github.com/guo6x/dsh-pilot",
|
|
52
|
+
"category": "tools"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"id": "dsh-housekeeper",
|
|
56
|
+
"name": "环境管家",
|
|
57
|
+
"nameEn": "Environment Housekeeper",
|
|
58
|
+
"author": "guo6x",
|
|
59
|
+
"description": "管住 agent 的脏手:工具链台账(node/pnpm/git/gh/ffmpeg 等自动探测)、缓存与临时目录扫描 + 白名单安全一键清理、机器规则 AGENTS.md 查看编辑,全在设置面板完成。",
|
|
60
|
+
"descriptionEn": "Keep your agent's hands clean: toolchain inventory, scratch/cache scan with whitelist-guarded one-click cleanup, and the machine rules file (AGENTS.md) view/edit - all in the settings panel.",
|
|
61
|
+
"repo": "https://github.com/guo6x/dsh-housekeeper",
|
|
62
|
+
"category": "utility"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"id": "dsh-deepread",
|
|
66
|
+
"name": "DeepRead 精读助手",
|
|
67
|
+
"nameEn": "DeepRead Assistant",
|
|
68
|
+
"author": "xiehuan123",
|
|
69
|
+
"description": "五种模式精读插件(quick / deep / map / feynman / book),支持公众号链接与文件输入、批量对比、预算预检与后台任务进度透明,导出 md / mm / html,Web UI 提供工具结果卡片与精读面板。",
|
|
70
|
+
"descriptionEn": "A five-mode deep reading plugin (quick / deep / map / feynman / book) for links and files, with batch comparison, budget preflight, transparent background-job progress, md / mm / html exports, and Web UI tool-result cards plus a reading panel.",
|
|
71
|
+
"repo": "https://github.com/xiehuan123/dsh-deepread",
|
|
72
|
+
"npm": "dsh-deepread",
|
|
73
|
+
"category": "knowledge"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": "dsh-mnemon",
|
|
77
|
+
"name": "Mnemon 记忆系统",
|
|
78
|
+
"nameEn": "Mnemon Memory",
|
|
79
|
+
"author": "omdsh-dev",
|
|
80
|
+
"description": "与 Mnemon CLI 集成的跨 Agent、本地优先持久记忆插件:用户画像 / 工作记忆 / 项目档案与长期 Memory Spaces,支持导入导出。",
|
|
81
|
+
"descriptionEn": "A cross-agent, local-first persistent memory plugin integrating the Mnemon CLI: profiles, working memory, project documents and long-term Memory Spaces, with import and export.",
|
|
82
|
+
"repo": "https://github.com/omdsh-dev/dsh-mnemon",
|
|
83
|
+
"npm": "dsh-mnemon",
|
|
84
|
+
"category": "knowledge"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": "dsh-plugin-hub",
|
|
88
|
+
"name": "插件中心(dsh-plugin-hub)",
|
|
89
|
+
"nameEn": "Plugin Hub",
|
|
90
|
+
"author": "Noob-stupid",
|
|
91
|
+
"description": "插件管理面板:已安装插件一键启用/停用,内置 GitHub dsh-plugin 插件市场(官方/聚合识别、子包浏览、一键安装与本地 AI 兜底修复、删除卸载),版本检测与一键更新、框架一键升级。",
|
|
92
|
+
"descriptionEn": "Plugin management panel: one-click enable/disable, a GitHub dsh-plugin marketplace with official/aggregate detection, subpackage browsing, one-click installs with local-AI fallback repair, uninstall, update detection and one-click framework upgrade.",
|
|
93
|
+
"repo": "https://github.com/Noob-stupid/dsh-plugin-hub",
|
|
94
|
+
"npm": "@noob-stupid/dsh-plugin-console",
|
|
95
|
+
"category": "tools"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"id": "dsh-genui",
|
|
99
|
+
"name": "GenUI 生成式 UI",
|
|
100
|
+
"nameEn": "GenUI",
|
|
101
|
+
"author": "omdsh-dev",
|
|
102
|
+
"description": "给模型输出配交互式 UI:助手回复内联渲染 dsh-ui 围栏(布局、图表、表格、表单、Mermaid、3D、原生音视频),双通道渲染兼容原版 DSH 与新构建,支持流式渲染、面板停靠与组件交互回传模型。",
|
|
103
|
+
"descriptionEn": "Interactive UI inside assistant replies via the dsh-ui fence: layouts, charts, tables, forms, quizzes, Mermaid, 3D and native audio/video. Dual-channel rendering covers stock DSH and newer builds, with streaming render, panel docking and component actions that loop back to the model.",
|
|
104
|
+
"repo": "https://github.com/omdsh-dev/dsh-genui",
|
|
105
|
+
"category": "ui"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": "dsh-annotation",
|
|
109
|
+
"name": "选中批注",
|
|
110
|
+
"nameEn": "Selection Annotation",
|
|
111
|
+
"author": "omdsh-dev",
|
|
112
|
+
"description": "选中助手文字即可批注,回车随消息发送;自己的气泡只显示问题与「批注 ×N」标签,模型按 Annotation N 逐条对照回复(悬浮芯片);UI 与批注块跟随 DSH 语言切换 zh/en,Cmd/Ctrl+Enter 可直发纯批注,斜杠命令原样放行。",
|
|
113
|
+
"descriptionEn": "Select text in an assistant reply to annotate it; annotations ride along with your next message, hidden in your own bubble behind an Annotations xN chip, and the model replies per Annotation N with hoverable chips. UI and annotation block follow the DSH locale (zh/en); Cmd/Ctrl+Enter sends annotations alone; slash commands pass through.",
|
|
114
|
+
"repo": "https://github.com/omdsh-dev/dsh-annotation",
|
|
115
|
+
"category": "ui"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"id": "deepseek-harness-auth",
|
|
119
|
+
"name": "DeepSeek Harness Auth",
|
|
120
|
+
"nameEn": "DeepSeek Harness Auth",
|
|
121
|
+
"author": "taichuy",
|
|
122
|
+
"description": "为 DSH Web 公网部署提供登录认证前置代理,支持账号密码、验证码、失败锁定和 IP/CIDR 白名单。",
|
|
123
|
+
"descriptionEn": "An authentication proxy for public DSH Web deployments with password login, captcha, failed-attempt locking, and IP/CIDR allowlists.",
|
|
124
|
+
"repo": "https://github.com/taichuy/deepseek-harness-auth",
|
|
125
|
+
"npm": "deepseek-harness-auth",
|
|
126
|
+
"category": "security"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": "dsh-cloud-sync",
|
|
130
|
+
"name": "云同步服务",
|
|
131
|
+
"nameEn": "Cloud Sync",
|
|
132
|
+
"author": "dickpy",
|
|
133
|
+
"description": "支持 WebDAV、S3、阿里云 OSS、腾讯云 COS 与 MinIO 的 DSH 云同步插件,可同步 profile、插件配置及本地插件源码归档。",
|
|
134
|
+
"descriptionEn": "DSH cloud sync for WebDAV, S3, Alibaba Cloud OSS, Tencent Cloud COS and MinIO, syncing profiles, plugin settings and local plugin source archives.",
|
|
135
|
+
"repo": "https://github.com/dickpy/dsh-cloud-sync",
|
|
136
|
+
"npm": "@dickpy/dsh-cloud-sync",
|
|
137
|
+
"category": "integration"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"id": "dsh-auto-memory",
|
|
141
|
+
"name": "自动记忆",
|
|
142
|
+
"nameEn": "Auto Memory",
|
|
143
|
+
"author": "Aik358",
|
|
144
|
+
"description": "三层自动记忆插件:用户级/项目笔记/每日日志自动注入与检索、每轮自动沉淀、AI 时段问候、智能检索、日历与工作区思维导图,支持继承 WorkBuddy/CodeBuddy/Claude Code/Codex 等其他 AI 工具的记忆。",
|
|
145
|
+
"descriptionEn": "Three-layer auto memory for DSH: user-level/project-notes/daily-logs with automatic injection and retrieval, per-turn auto-consolidation, AI greetings, smart search, calendar, workspace mind map, and inheritance from WorkBuddy/CodeBuddy/Claude Code/Codex.",
|
|
146
|
+
"repo": "https://github.com/Aik358/dsh-auto-memory",
|
|
147
|
+
"npm": "@a9i5k4/dsh-auto-memory",
|
|
148
|
+
"category": "knowledge"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": "dsh-memoir",
|
|
152
|
+
"name": "项目记忆 Memoir",
|
|
153
|
+
"nameEn": "Project Memory Memoir",
|
|
154
|
+
"author": "Qinling-Melon-Farmers",
|
|
155
|
+
"description": "项目持久化记忆与会话经验沉淀:memoir_record / memoir_read 工具(BM25 相关度排序检索)、每轮工作自动蒸馏、记忆诊断面板与跨项目全局检索,纯本地零外部依赖。",
|
|
156
|
+
"descriptionEn": "Project persistent memory and session-lessons distillation: memoir_record / memoir_read tools with BM25-ranked retrieval, per-turn auto-distill, a memory diagnostics panel and cross-project search - fully local, no external dependency.",
|
|
157
|
+
"repo": "https://github.com/Qinling-Melon-Farmers/dsh-memoir",
|
|
158
|
+
"category": "knowledge",
|
|
159
|
+
"npm": "dsh-memoir"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"id": "dsh-worktime-board",
|
|
163
|
+
"name": "牛马修仙看板",
|
|
164
|
+
"nameEn": "Worktime Cultivation Board",
|
|
165
|
+
"author": "spacexun2",
|
|
166
|
+
"description": "DeepSeek Harness 工时统计 × 修仙养成:日/周/月/学年四档汇总 agent 活跃时长、token、输入与工具调用,十二重境界(炼气→宇宙洪荒)量化进度,纯本地存储。",
|
|
167
|
+
"descriptionEn": "Worktime statistics meets cultivation: daily / weekly / monthly / yearly agent activity, token, input and tool-call summaries with a twelve-realm progression (Qi Refining to Cosmic Chaos), fully local.",
|
|
168
|
+
"repo": "https://github.com/spacexun2/dsh-worktime-board",
|
|
169
|
+
"npm": "dsh-worktime-board",
|
|
170
|
+
"category": "utility"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"id": "dsh-skill-explorer",
|
|
174
|
+
"name": "技能中心(Skill Explorer)",
|
|
175
|
+
"nameEn": "Skill Explorer",
|
|
176
|
+
"author": "wingsky-1",
|
|
177
|
+
"description": "DSH 技能中心:按来源分级浏览已加载 skill(系统内置 / 项目 / 用户 / 自定义 / 运行时),支持启用/禁用、创建与删除(移入 .trash)。",
|
|
178
|
+
"descriptionEn": "DSH skill center: browse loaded skills grouped by source (bundled / project / user / custom / runtime), with enable/disable, create and delete (move to .trash).",
|
|
179
|
+
"repo": "https://github.com/wingsky-1/dsh-skill-explorer",
|
|
180
|
+
"npm": "@linxin666/dsh-client-ui-skill-explorer",
|
|
181
|
+
"category": "tools"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"id": "dsh-friendly-steps",
|
|
185
|
+
"name": "过程精简 Friendly Steps",
|
|
186
|
+
"nameEn": "Friendly Steps",
|
|
187
|
+
"author": "dongwenxiu83-web",
|
|
188
|
+
"description": "面向文字工作者的过程精简:纯 CSS 折叠 Think / 工具调用等技术过程行,右下角浮条「已完成 N 步」一键展开收起,失败步骤红色计数反馈;不注入 React 列表、无全量扫描,零侵入。",
|
|
189
|
+
"descriptionEn": "Writer-friendly process collapse: hides Think / tool-call rows via pure CSS behind a floating 'N steps done' pill with red failure counts and one-click expand/collapse. No foreign nodes in React lists, no full-DOM scans — zero interference.",
|
|
190
|
+
"repo": "https://github.com/dongwenxiu83-web/dsh-friendly-steps",
|
|
191
|
+
"category": "ui"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"id": "dsh-full-remote",
|
|
195
|
+
"name": "全功能远程访问",
|
|
196
|
+
"nameEn": "Full Remote Access",
|
|
197
|
+
"author": "JUANWANG-BUAA",
|
|
198
|
+
"description": "令牌门控反向代理:公网隧道或局域网下,在手机等设备上远程使用 DeepSeek Harness,设置、凭据与文件访问保持可用,支持按设备会话。",
|
|
199
|
+
"descriptionEn": "Token-gated reverse proxy for remote access: use DeepSeek Harness over public tunnels or LAN from phones and other devices, with settings, credentials and file access kept working and per-device sessions.",
|
|
200
|
+
"repo": "https://github.com/JUANWANG-BUAA/dsh-full-remote",
|
|
201
|
+
"npm": "dsh-full-remote",
|
|
202
|
+
"category": "integration"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"id": "dsh-history-tree",
|
|
206
|
+
"name": "历史树",
|
|
207
|
+
"nameEn": "History Tree",
|
|
208
|
+
"author": "z953218350",
|
|
209
|
+
"description": "在聊天消息左侧提供 Codex 风格对话轮次时间线点阵与悬浮历史概览卡片,支持鱼眼放大动效与点击直达对应轮次。",
|
|
210
|
+
"descriptionEn": "Codex-style conversation turn timeline rail and hover overview cards beside chat messages, with fish-eye magnification and click-to-jump navigation.",
|
|
211
|
+
"repo": "https://github.com/z953218350/dsh-history-tree",
|
|
212
|
+
"npm": "dsh-history-tree",
|
|
213
|
+
"category": "ui"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"id": "dsh-gzip",
|
|
217
|
+
"name": "dsh-gzip",
|
|
218
|
+
"nameEn": "dsh-gzip",
|
|
219
|
+
"author": "wingsky-1",
|
|
220
|
+
"description": "/api 响应 gzip 压缩插件:为远程 / 低带宽链路开启 /api 响应压缩,解决会话历史因大响应无压缩而超时加载失败的问题;SSE / zip / 已编码响应自动豁免,无全局副作用。",
|
|
221
|
+
"descriptionEn": "API response gzip plugin for DSH Web GUI: enables gzip on /api responses for remote / low-bandwidth links, fixing session-history loads that fail on the timeout of large uncompressed responses; SSE, zip and already-encoded responses are passed through untouched, with no global side effects.",
|
|
222
|
+
"repo": "https://github.com/wingsky-1/dsh-plugin-hub/tree/main/packages/dsh-gzip",
|
|
223
|
+
"npm": "@wingsky-1/dsh-gzip"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"id": "dsh-wsl-bridge",
|
|
227
|
+
"name": "WSL Windows 桥",
|
|
228
|
+
"nameEn": "WSL Windows Bridge",
|
|
229
|
+
"author": "ch1bug",
|
|
230
|
+
"description": "让 WSL 里的 agent 访问 Windows 侧:读写 C:\\ 文件、运行 .exe、Explorer 打开、wslpath 路径互转与盘符枚举(win_ls/read/write/run/open/path/drives)。",
|
|
231
|
+
"descriptionEn": "Lets a WSL agent reach the Windows host: read/write C:\\ files, run .exe programs, open in Explorer, convert paths via wslpath and list drives (win_ls/read/write/run/open/path/drives).",
|
|
232
|
+
"repo": "https://github.com/ch1bug/dsh-wsl-bridge",
|
|
233
|
+
"category": "integration"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"id": "dsh-mimo-agent-tools",
|
|
237
|
+
"name": "MiMo 多模态工具",
|
|
238
|
+
"nameEn": "MiMo Multimodal Tools",
|
|
239
|
+
"author": "ch1bug",
|
|
240
|
+
"description": "把小米 MiMo API 封装为 agent 工具:联网搜索、图像/音频/视频理解、语音转写、语音合成与音色克隆(mimo_search/vision/audio/video/asr/tts/voiceclone)。",
|
|
241
|
+
"descriptionEn": "Turns the Xiaomi MiMo API into agent tools: web search, image/audio/video understanding, speech-to-text, text-to-speech and voice cloning (mimo_search/vision/audio/video/asr/tts/voiceclone).",
|
|
242
|
+
"repo": "https://github.com/ch1bug/dsh-mimo-agent-tools",
|
|
243
|
+
"category": "tools"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"id": "dsh-skill-fuzzy",
|
|
247
|
+
"name": "技能模糊搜索",
|
|
248
|
+
"nameEn": "Skill Fuzzy Search",
|
|
249
|
+
"author": "ch1bug",
|
|
250
|
+
"description": "Codex 风格模糊技能搜索:/bug、/diag、/regression 都能在 / 技能菜单里命中 diagnosing-bugs(名称子序列 + 描述连续子串匹配)。",
|
|
251
|
+
"descriptionEn": "Codex-style fuzzy skill search: /bug, /diag and /regression all find diagnosing-bugs in the / skill menu (name subsequence + description substring matching).",
|
|
252
|
+
"repo": "https://github.com/ch1bug/dsh-skill-fuzzy",
|
|
253
|
+
"category": "ui"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"id": "dsh-approve-for-me",
|
|
257
|
+
"name": "自动审批审核",
|
|
258
|
+
"nameEn": "Approve for Me",
|
|
259
|
+
"author": "DamonKoy",
|
|
260
|
+
"description": "只读工具自动放行、危险命令自动拒绝,可配置全自动模式。",
|
|
261
|
+
"descriptionEn": "Auto-approves read-only tools, auto-denies dangerous commands, optional full-auto mode.",
|
|
262
|
+
"repo": "https://github.com/DamonKoy/dsh-plugins/tree/main/packages/dsh-approve-for-me",
|
|
263
|
+
"npm": "dsh-approve-for-me"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"id": "dsh-memories",
|
|
267
|
+
"name": "项目记忆",
|
|
268
|
+
"nameEn": "Project Memories",
|
|
269
|
+
"author": "DamonKoy",
|
|
270
|
+
"description": "按项目作用域持久化的键值记忆,支持增删查列与搜索。",
|
|
271
|
+
"descriptionEn": "Project-scoped persistent key-value memories with set/get/list/delete/search.",
|
|
272
|
+
"repo": "https://github.com/DamonKoy/dsh-plugins/tree/main/packages/dsh-memories",
|
|
273
|
+
"npm": "dsh-memories"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"id": "dsh-notifier",
|
|
277
|
+
"name": "dsh-notifier",
|
|
278
|
+
"nameEn": "dsh-notifier",
|
|
279
|
+
"author": "wingsky-1",
|
|
280
|
+
"description": "审批/完成/错误事件通知:浏览器 Notification + 系统原生 toast(Windows PowerShell WinRT / Linux·macOS notify-send,零依赖);提示音可配、错误同类合并、免打扰时段、通知历史与配置面板;非安全上下文自动降级横幅。",
|
|
281
|
+
"descriptionEn": "Approval / completion / error event notifications: browser Notification API plus native OS toasts (Windows PowerShell WinRT, Linux and macOS notify-send, zero dependencies); configurable sound, error merging, quiet hours, notification history and a settings panel; falls back to in-page banners outside secure contexts.",
|
|
282
|
+
"repo": "https://github.com/wingsky-1/dsh-plugin-hub/tree/main/packages/dsh-notifier",
|
|
283
|
+
"npm": "@wingsky-1/dsh-notifier",
|
|
284
|
+
"category": "utility"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"id": "dsh-logicprobe",
|
|
288
|
+
"name": "逻辑探针",
|
|
289
|
+
"nameEn": "Logic Probe",
|
|
290
|
+
"author": "AmethystLuna",
|
|
291
|
+
"description": "AI 智能体声明核查技能:枚举设计文档与重构计划中的每个可验证声明,对照代码库事实逐条核验;行为类声明升级为逻辑原语验证(7 项结构检查 + 7 项对抗探针),重构前后模型对比做回归检测,输出 file:line 证据。",
|
|
292
|
+
"descriptionEn": "Claim verification for AI coding agents: enumerate every verifiable claim in design docs and refactoring plans, verify against codebase facts, then escalate behavioral claims to logic-primitive verification (7 structural checks + 7 adversarial probes), with before/after model comparison for refactoring regression detection.",
|
|
293
|
+
"repo": "https://github.com/AmethystLuna/logicprobe",
|
|
294
|
+
"category": "tools"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"id": "dsh-chatgpt-subscription",
|
|
298
|
+
"name": "子代理管理",
|
|
299
|
+
"nameEn": "Subagent Management",
|
|
300
|
+
"author": "Aa728848",
|
|
301
|
+
"description": "让 DSH 通过 ChatGPT 订阅使用 GPT 系列模型:PKCE OAuth 登录、DPAPI/钥匙串/0600 凭据存储、流式 Responses、图片生成、Codex 搜索、额度展示与子代理管理。",
|
|
302
|
+
"descriptionEn": "Use GPT models in DSH through your ChatGPT subscription: PKCE OAuth login, DPAPI/keychain/0600 credential storage, streaming Responses, image generation, Codex search, quota display and subagent management.",
|
|
303
|
+
"repo": "https://github.com/Aa728848/dsh-chatgpt-subscription",
|
|
304
|
+
"npm": "@eddyskywalker/dsh-chatgpt-subscription",
|
|
305
|
+
"category": "integration"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"id": "dsh-imagegen",
|
|
309
|
+
"name": "AI 生图",
|
|
310
|
+
"nameEn": "AI ImageGen",
|
|
311
|
+
"author": "dickpy",
|
|
312
|
+
"description": "AI 生图插件:通过可配置的 OpenAI 兼容端点(gpt-image-2 / gpt-image-1 / dall-e-3)实现文生图与图生图,提供生成历史、提示词模板库与 API 设置卡片。",
|
|
313
|
+
"descriptionEn": "AI image generation for the DSH Web GUI: text-to-image and image-to-image through a configurable OpenAI-compatible endpoint (gpt-image-2 / gpt-image-1 / dall-e-3), with generation history, a prompt template library and an API settings card.",
|
|
314
|
+
"repo": "https://github.com/dickpy/dsh-imagegen",
|
|
315
|
+
"npm": "@dickpy/dsh-imagegen",
|
|
316
|
+
"category": "tools"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"id": "dsh-api-visualizer",
|
|
320
|
+
"name": "接口捕获",
|
|
321
|
+
"nameEn": "API Capture",
|
|
322
|
+
"author": "lemonmmice",
|
|
323
|
+
"description": "Fiddler 式实时抓包面板:tail 客户端 System.Net 跟踪日志自动解析 HTTP 请求/响应(gzip 自动解包)并实时入库,内置本地 MITM 代理可抓任意进程,支持筛选 / 详情 / 导出 / 重放 / 标记。",
|
|
324
|
+
"descriptionEn": "Fiddler-style realtime capture panel: tails the client's System.Net trace log into live HTTP request/response records (gzip auto-decompressed), plus a built-in local MITM proxy for arbitrary processes, with filters, detail view, export, replay and flags.",
|
|
325
|
+
"repo": "https://github.com/lemonmmice/dsh-api-visualizer",
|
|
326
|
+
"category": "tools"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"id": "dsh-postman",
|
|
330
|
+
"name": "接口调试",
|
|
331
|
+
"nameEn": "API Debugger",
|
|
332
|
+
"author": "lemonmmice",
|
|
333
|
+
"description": "类 Postman 接口调试面板:由宿主服务端发起 HTTP 请求(绕过浏览器 CORS),支持 WebSocket / 原始 TCP / gRPC、鉴权助手、环境变量、cURL 导入导出、请求集合与历史。",
|
|
334
|
+
"descriptionEn": "Postman-style API debug panel: host-side HTTP requests without browser CORS limits, plus WebSocket / raw TCP / gRPC, auth helpers, env variables, cURL import/export, request collections and history.",
|
|
335
|
+
"repo": "https://github.com/lemonmmice/dsh-postman",
|
|
336
|
+
"category": "tools"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"id": "dsh-workspace-api",
|
|
340
|
+
"name": "企业信息查询 Agent",
|
|
341
|
+
"nameEn": "Workspace API",
|
|
342
|
+
"author": "liaoyonghong",
|
|
343
|
+
"description": "把企业文档变成可对话的聊天机器人:员工或应用系统用自然语言提问,AI 代理查阅文档后带出处回答;同时提供 workspace 内容 HTTP API。",
|
|
344
|
+
"descriptionEn": "Turn enterprise documents into a conversational Q&A bot: employees or apps ask in natural language and an AI agent answers with cited sources; also exposes a workspace content HTTP API.",
|
|
345
|
+
"repo": "https://github.com/liaoyonghong/dsh-workspace-api",
|
|
346
|
+
"npm": "dsh-workspace-api",
|
|
347
|
+
"category": "knowledge"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"id": "dsh-llm-verifier",
|
|
351
|
+
"name": "LLM 裁判复核",
|
|
352
|
+
"nameEn": "LLM Verifier",
|
|
353
|
+
"author": "Aa728848",
|
|
354
|
+
"description": "DSH 原生可配置 LLM 裁判复核插件:成对比较、锦标赛择优、进度判定与自动验收门控(verifier_compare/select/track/current_session),A–T 标尺 + 期望评分,自带 Web 设置面板。",
|
|
355
|
+
"descriptionEn": "Configurable DSH-native LLM verifier plugin: pairwise comparison, pivot tournament selection, progress tracking and auto-acceptance gating (verifier_compare/select/track/current_session) with A-T scale scoring and a Web settings page.",
|
|
356
|
+
"repo": "https://github.com/Aa728848/dsh-llm-verifier",
|
|
357
|
+
"npm": "dsh-llm-verifier",
|
|
358
|
+
"category": "tools"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"id": "dsh-session-id",
|
|
362
|
+
"name": "会话 ID",
|
|
363
|
+
"nameEn": "Session ID",
|
|
364
|
+
"author": "yufengnigel",
|
|
365
|
+
"description": "侧边栏底部会话 ID 面板:列出全部会话的完整 ID 并一键复制(纯浏览器、只读,不修改会话状态)。",
|
|
366
|
+
"descriptionEn": "Sidebar-foot Session ID panel: lists every session with its full id and one-click copy (browser-only and read-only, never mutates sessions).",
|
|
367
|
+
"repo": "https://github.com/zhu1090093659/dsh-web-ui/tree/main/packages/dsh-session-id",
|
|
368
|
+
"npm": "@linxin666/dsh-client-ui-session-id",
|
|
369
|
+
"category": "ui"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"id": "miku-pet",
|
|
373
|
+
"name": "Miku 桌宠",
|
|
374
|
+
"nameEn": "Miku Pet",
|
|
375
|
+
"author": "stushansusu",
|
|
376
|
+
"description": "只属于 Miku 的浮动桌宠:手绘风帧动画,5s 随机待机(连漏 2 次必演)、连续工作赚金币、商店恢复饥饿、属性彩条与两级悬停菜单;路由 /miku-pet 与内置 dsh-pet 共存。",
|
|
377
|
+
"descriptionEn": "A floating pet exclusively for Miku: hand-drawn frame animations, 5s random idle with a pity timer, a continuous work loop earning coins, a shop restoring hunger, stat bars and a two-level hover menu; coexists with the built-in dsh-pet under the /miku-pet namespace.",
|
|
378
|
+
"repo": "https://github.com/stushansusu/miku-pet",
|
|
379
|
+
"category": "ui"
|
|
380
|
+
}
|
|
381
|
+
]
|
package/cordis.patch.yml
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
# dsh-community-plugins bundle patch:
|
|
2
|
-
#
|
|
3
|
-
#
|
|
4
|
-
# dsh
|
|
5
|
-
#
|
|
6
|
-
#
|
|
7
|
-
# community-plugins settings namespace (the card's enable switch), and the
|
|
8
|
-
# dsh.client declaration in package.json makes the browser half (exports
|
|
9
|
-
# "./client", served from lib/client.js) render the index card in the
|
|
10
|
-
# plugin-configuration section.
|
|
1
|
+
# dsh-community-plugins bundle patch: keeps the inert cordis row for the
|
|
2
|
+
# community index data source. The package no longer ships a settings
|
|
3
|
+
# surface — community.json feeds the Workshop store plugin list and the
|
|
4
|
+
# dsh-market.com manifest — so the row only holds the no-op host entry.
|
|
5
|
+
# Profiles that previously mounted the card keep resolving; the row can be
|
|
6
|
+
# removed through the plugin manager.
|
|
11
7
|
- insert:
|
|
12
8
|
- id: ui-community-plugins
|
|
13
9
|
name: '@linxin666/dsh-client-ui-community-plugins'
|
package/lib/index.js
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { installSettingsSection, settingsNamespace } from "@deepseek-ai/dsh-settings";
|
|
2
|
-
import z from "schemastery";
|
|
3
1
|
//#region src/mount-once.ts
|
|
4
2
|
/**
|
|
5
3
|
* Host single-instance guard shared by the plugin family. The family bundle
|
|
@@ -44,28 +42,12 @@ function mountOnce(packageName, fn) {
|
|
|
44
42
|
//#region src/index.ts
|
|
45
43
|
/** Stable cordis plugin name (matches cordis.patch.yml insert id). */
|
|
46
44
|
const name = "ui-community-plugins";
|
|
47
|
-
/** Services the
|
|
45
|
+
/** Services the inert entry needs: none. */
|
|
48
46
|
const inject = [];
|
|
49
47
|
/**
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
* spells the same value and must not depend on a Host package.
|
|
48
|
+
* Inert apply: the data source carries no runtime behavior.
|
|
49
|
+
* @param _ctx - cordis context.
|
|
53
50
|
*/
|
|
54
|
-
const
|
|
55
|
-
const Config = z.object({ enabled: z.boolean().default(true) });
|
|
56
|
-
/**
|
|
57
|
-
* Register the community-plugins settings namespace. The application of the
|
|
58
|
-
* value is browser-side (the card hides its list while off), so the hooks
|
|
59
|
-
* only keep the source reachable; installSettingsSection is a no-op when no
|
|
60
|
-
* settings service is mounted (pure community-card installs skip it).
|
|
61
|
-
* @param ctx - cordis context.
|
|
62
|
-
*/
|
|
63
|
-
const apply = mountOnce("@linxin666/dsh-client-ui-community-plugins", applyImpl);
|
|
64
|
-
function applyImpl(ctx) {
|
|
65
|
-
installSettingsSection(ctx, COMMUNITY_PLUGINS_SETTINGS_NAMESPACE, Config, {}, {
|
|
66
|
-
setSource: () => {},
|
|
67
|
-
onChange: () => {}
|
|
68
|
-
});
|
|
69
|
-
}
|
|
51
|
+
const apply = mountOnce("@linxin666/dsh-client-ui-community-plugins", (_ctx) => {});
|
|
70
52
|
//#endregion
|
|
71
|
-
export {
|
|
53
|
+
export { apply, inject, name };
|