@linxin666/dsh-client-ui-community-plugins 0.3.2 → 0.3.4
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/community.json +21 -9
- package/lib/index.js +2 -2
- package/package.json +2 -2
package/community.json
CHANGED
|
@@ -30,6 +30,17 @@
|
|
|
30
30
|
"repo": "https://github.com/huiliyi37/dsh-tianshu-tui",
|
|
31
31
|
"category": "ui"
|
|
32
32
|
},
|
|
33
|
+
{
|
|
34
|
+
"id": "dsh-context",
|
|
35
|
+
"name": "上下文可视化",
|
|
36
|
+
"nameEn": "Context Visualizer",
|
|
37
|
+
"author": "bowenliang123",
|
|
38
|
+
"description": "一站式 DeepSeek Harness 上下文洞察与可视化插件:Context 面板与浏览器加 /context 命令,透视上下文构成、历史演进与压缩/剪枝等事件,并展示消息与图片的 token 占用。",
|
|
39
|
+
"descriptionEn": "A one-stop DeepSeek Harness context insight and visualization plugin: a Context dashboard and browser plus /context command that reveal composition, history evolution, compaction/prune events, and token cost per message and image.",
|
|
40
|
+
"repo": "https://github.com/bowenliang123/dsh-context",
|
|
41
|
+
"npm": "dsh-context",
|
|
42
|
+
"category": "tools"
|
|
43
|
+
},
|
|
33
44
|
{
|
|
34
45
|
"id": "dsh-builtin-toggles",
|
|
35
46
|
"name": "内置能力检查器",
|
|
@@ -364,18 +375,19 @@
|
|
|
364
375
|
"author": "yufengnigel",
|
|
365
376
|
"description": "侧边栏底部会话 ID 面板:列出全部会话的完整 ID 并一键复制(纯浏览器、只读,不修改会话状态)。",
|
|
366
377
|
"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
|
|
378
|
+
"repo": "https://github.com/zhu1090093659/dsh-web/tree/main/packages/dsh-session-id",
|
|
368
379
|
"npm": "@linxin666/dsh-client-ui-session-id",
|
|
369
380
|
"category": "ui"
|
|
370
381
|
},
|
|
371
382
|
{
|
|
372
|
-
"id": "
|
|
373
|
-
"name": "
|
|
374
|
-
"nameEn": "
|
|
375
|
-
"author": "
|
|
376
|
-
"description": "
|
|
377
|
-
"descriptionEn": "
|
|
378
|
-
"repo": "https://github.com/
|
|
379
|
-
"
|
|
383
|
+
"id": "dsh-session-insights",
|
|
384
|
+
"name": "会话复盘",
|
|
385
|
+
"nameEn": "Session Insights",
|
|
386
|
+
"author": "GreenLv",
|
|
387
|
+
"description": "通过 /session-insights 把 DSH 会话历史生成为本地、基于证据的工作流复盘:自包含 HTML Dashboard 与配套 JSON,支持确定性分析与可选的模型辅助分析。",
|
|
388
|
+
"descriptionEn": "Generates local, evidence-backed workflow retrospectives from DSH session history through /session-insights: a self-contained HTML dashboard plus companion JSON, with deterministic and optional model-assisted analysis.",
|
|
389
|
+
"repo": "https://github.com/GreenLv/dsh-session-insights",
|
|
390
|
+
"npm": "dsh-session-insights",
|
|
391
|
+
"category": "tools"
|
|
380
392
|
}
|
|
381
393
|
]
|
package/lib/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
//#region src/mount-once.ts
|
|
2
2
|
/**
|
|
3
3
|
* Host single-instance guard shared by the plugin family. The family bundle
|
|
4
|
-
* (dsh-web-
|
|
4
|
+
* (dsh-web-all / dsh-skins) namespaces every child row id (web-ui-*), so
|
|
5
5
|
* the loader accepts a standalone install of the same package side by side;
|
|
6
6
|
* without this guard the second instance would still re-register the same
|
|
7
7
|
* webserver routes, tools, settings namespaces, and system-prompt sections
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* `ctx.effect` runs its callback immediately and treats the callback's
|
|
15
15
|
* return value as the fiber disposer, so the unmarker is returned, not run.
|
|
16
16
|
*/
|
|
17
|
-
const MOUNTED = Symbol.for("dsh-web
|
|
17
|
+
const MOUNTED = Symbol.for("dsh-web.mounted-plugins");
|
|
18
18
|
function mountedSet() {
|
|
19
19
|
const registry = globalThis;
|
|
20
20
|
return registry[MOUNTED] ??= /* @__PURE__ */ new Set();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@linxin666/dsh-client-ui-community-plugins",
|
|
3
3
|
"description": "Community plugin index data source for the dsh web ecosystem: community.json is the single source of the Workshop store plugin list and the dsh-market.com plugin manifest.",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"exports": {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
],
|
|
52
52
|
"repository": {
|
|
53
53
|
"type": "git",
|
|
54
|
-
"url": "https://github.com/zhu1090093659/dsh-web
|
|
54
|
+
"url": "https://github.com/zhu1090093659/dsh-web.git"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"build": "tsdown",
|