@linxin666/dsh-client-ui-community-plugins 0.3.2 → 0.3.3
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 +10 -9
- package/lib/index.js +2 -2
- package/package.json +2 -2
package/community.json
CHANGED
|
@@ -364,18 +364,19 @@
|
|
|
364
364
|
"author": "yufengnigel",
|
|
365
365
|
"description": "侧边栏底部会话 ID 面板:列出全部会话的完整 ID 并一键复制(纯浏览器、只读,不修改会话状态)。",
|
|
366
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
|
|
367
|
+
"repo": "https://github.com/zhu1090093659/dsh-web/tree/main/packages/dsh-session-id",
|
|
368
368
|
"npm": "@linxin666/dsh-client-ui-session-id",
|
|
369
369
|
"category": "ui"
|
|
370
370
|
},
|
|
371
371
|
{
|
|
372
|
-
"id": "
|
|
373
|
-
"name": "
|
|
374
|
-
"nameEn": "
|
|
375
|
-
"author": "
|
|
376
|
-
"description": "
|
|
377
|
-
"descriptionEn": "
|
|
378
|
-
"repo": "https://github.com/
|
|
379
|
-
"
|
|
372
|
+
"id": "dsh-session-insights",
|
|
373
|
+
"name": "会话复盘",
|
|
374
|
+
"nameEn": "Session Insights",
|
|
375
|
+
"author": "GreenLv",
|
|
376
|
+
"description": "通过 /session-insights 把 DSH 会话历史生成为本地、基于证据的工作流复盘:自包含 HTML Dashboard 与配套 JSON,支持确定性分析与可选的模型辅助分析。",
|
|
377
|
+
"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.",
|
|
378
|
+
"repo": "https://github.com/GreenLv/dsh-session-insights",
|
|
379
|
+
"npm": "dsh-session-insights",
|
|
380
|
+
"category": "tools"
|
|
380
381
|
}
|
|
381
382
|
]
|
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.3",
|
|
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",
|