dsh-memory-eternal 0.4.0 → 0.4.2
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
CHANGED
|
@@ -77,16 +77,15 @@ dsh plugin --profile web add F:/MyApp/eternal/dsh-memory-eternal
|
|
|
77
77
|
|
|
78
78
|
### 🧭 插件发现 / 收录标准
|
|
79
79
|
|
|
80
|
-
本插件面向 DSH
|
|
80
|
+
本插件面向 DSH 插件生态,仓库已打 **GitHub `dsh-plugin` topic** 并按社区标准结构发布,可被以下机制**自动发现**(无需手动提交 PR):
|
|
81
81
|
|
|
82
|
-
| 机制 |
|
|
82
|
+
| 机制 | 收录方式 | 状态 |
|
|
83
83
|
| --- | --- | --- |
|
|
84
|
-
| **
|
|
85
|
-
| **dsh-find-plugin
|
|
86
|
-
| **dsh-marketplace
|
|
87
|
-
| **dsh-plugin-marketplace** | 实测/自主插件市场:[YELEBAI/dsh-plugin-marketplace](https://github.com/YELEBAI/dsh-plugin-marketplace) | 提交中 |
|
|
84
|
+
| **dsh-marketplace**(ouyangyipeng) | 实时读取 **GitHub `topic:dsh-plugin`** 的社区仓库,有该 topic 即进入 `设置 → 插件 → Marketplace` | ✅(topic 已打) |
|
|
85
|
+
| **dsh-find-plugin**(awesome-dsh-plugin) | 会话内按 `topic:dsh-plugin` + 星数实时搜索 | ✅ |
|
|
86
|
+
| **dsh-plugin-marketplace**(YELEBAI) | 每 2 小时扫描 `topic:dsh-plugin`,静态验证 manifest/patch/入口/npm tarball 后写入中心 Registry;无需人工申请 | ✅(已声明 `dsh.marketplace` 元数据辅助分类/一键安装) |
|
|
88
87
|
|
|
89
|
-
>
|
|
88
|
+
> dsh-plugin-marketplace 会读取 `package.json#dsh.marketplace`(`profiles:["web"]`、`requiresBuildApproval:false`、`manualSteps:false`)来给插件归类并开放一键安装。两个市场均为**自动扫描**,非发布动作;插件结构通过验证即被收录。
|
|
90
89
|
|
|
91
90
|
---
|
|
92
91
|
|
|
@@ -229,6 +228,8 @@ dsh-memory-eternal/
|
|
|
229
228
|
|
|
230
229
|
## 📦 发布记录
|
|
231
230
|
|
|
231
|
+
- **v0.4.2**(已发布):修复 GitHub/npm 顶部产品演示 GIF 无法显示——压缩至 GitHub README 10MB 渲染阈值以下(8MB)。
|
|
232
|
+
- **v0.4.1**(已发布):**Marketplace 收录标准**落地——声明 `package.json#dsh.marketplace`(`profiles:["web"]` 等),README 收录规则表对齐 dsh-marketplace / dsh-find-plugin / dsh-plugin-marketplace 的**自动扫描**机制;产品展示头部 GIF(`assets/screen/dsh-memory-eternal.gif`)置顶。
|
|
232
233
|
- **v0.4.0**(已发布):图谱交互全面增强——**图例过滤**、**时间维着色**、**右键菜单**、**Shift 框选多选**、**单删/批量删除**、**多卡合并**、**一键导出 PNG**(预览:下载/另存为/复制/全屏);知识卡——**Markdown 渲染**、**长卡折叠**、**新卡角标**、**搜索命中高亮**、**卡片行删除**、**无限滚动懒加载**、最近/标题/热点排序、自定义滚动条;**相似度关联建议**(similar 边);**记忆库导出/导入**(MD/JSON 备份,导出可选**自选位置**);操作**顶部醒目绿/红 toast**(反馈结果 + 导出位置/文件名);默认视图与节点调大。
|
|
233
234
|
- **v0.3.0**:知识图谱**科学布局**升级——多环径向/力导向混合布局(按 kind 分扇区、枢纽在内圈、环间距不重叠,数量大也不乱);只保留**高影响力主干边**(避免毛球);默认只显示**枢纽标签**、放大后全量;大图关闭节点发光提升性能。
|
|
234
235
|
- **v0.2.9**:修复 **GitHub 源安装无法启动**——提交 `lib/client.js`(此前被忽略未入库,GitHub 拉取的包缺客户端 bundle,导致 DSH 启动失败)。
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-memory-eternal",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "记忆核心(Memory Eternal):自研的 DeepSeek Harness 记忆插件,不移植任何既有记忆框架——对话结束后自动沉淀知识卡到本地 Markdown Vault(自研去重、自研 CJK 检索、可 git 管理),设置页提供图形化知识库(统计 / 搜索 / 知识图谱 + 侧边栏一键弹窗),Agent 通过 memory_recall 工具按需召回历史上下文。零人工干预。",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -77,6 +77,12 @@
|
|
|
77
77
|
},
|
|
78
78
|
"bundle": {
|
|
79
79
|
"patch": "./cordis.patch.yml"
|
|
80
|
+
},
|
|
81
|
+
"marketplace": {
|
|
82
|
+
"profiles": ["web"],
|
|
83
|
+
"requiresBuildApproval": false,
|
|
84
|
+
"requiresRestart": true,
|
|
85
|
+
"manualSteps": false
|
|
80
86
|
}
|
|
81
87
|
}
|
|
82
88
|
}
|