dsh-memory-eternal 0.2.4 → 0.2.5

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.
Files changed (2) hide show
  1. package/README.md +7 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -42,7 +42,7 @@
42
42
  | 🕸 **知识图谱** | 卡片间的 `[[wikilink]]` 与共享标签自动连线,SVG 图谱左键凸显关联、右键打开卡片阅读 |
43
43
  | 🧠 **自动召回** | 注入 system prompt 告知 Agent 它拥有记忆核心,并注册 `memory_recall` 工具——需要项目背景/历史决策/领域知识时自动检索 |
44
44
  | 🔒 **本地优先** | 所有内容留在你的本机 Vault;不设遥测、不传云端。模型请求仍走你已配置好的 provider |
45
- | ⚙️ **一键安装** | 与 `dsh-ui-three-body` 同款插件机制,`npx @deepseek-ai/dsh plugin add dsh-memory-eternal` 即可 |
45
+ | ⚙️ **一键安装** | 与 `dsh-ui-three-body` 同款插件机制,`dsh plugin --profile web add dsh-memory-eternal` 即可 |
46
46
 
47
47
  **适合**:想要让 DSH 记住项目背景与历史决策的人 / 想给对话沉淀可检索知识库的人 / Obsidian 式 Markdown Vault 爱好者 / 在意数据归属(本地文件 > 云端数据库)的人。
48
48
 
@@ -52,15 +52,17 @@
52
52
 
53
53
  ```bash
54
54
  # 已发布后(npm)
55
- npx @deepseek-ai/dsh plugin --profile web add dsh-memory-eternal
55
+ dsh plugin --profile web add dsh-memory-eternal
56
56
 
57
57
  # 从 GitHub
58
- npx @deepseek-ai/dsh plugin --profile web add github:EternalNight996/dsh-memory-eternal
58
+ dsh plugin --profile web add github:EternalNight996/dsh-memory-eternal
59
59
 
60
60
  # 本地联调(link 本地目录,改代码即时生效)
61
- npx @deepseek-ai/dsh plugin --profile web add F:/MyApp/eternal/dsh-memory-eternal
61
+ dsh plugin --profile web add F:/MyApp/eternal/dsh-memory-eternal
62
62
  ```
63
63
 
64
+ > 未全局安装 `dsh` 时,可改用 `npx @deepseek-ai/dsh plugin --profile web add dsh-memory-eternal`。
65
+
64
66
  装完**重启 dsh web**:设置 → 记忆 出现知识库页面;侧边栏底部也会出现「记忆」按钮,一键打开完整记忆库弹窗。此后每轮对话自动沉淀知识卡。
65
67
 
66
68
  ---
@@ -171,6 +173,7 @@ dsh-memory-eternal/
171
173
 
172
174
  ## 📦 发布记录
173
175
 
176
+ - **v0.2.5**:安装方式统一为 `dsh plugin --profile web add`(README 标注 npx 备选写法)。
174
177
  - **v0.2.4**:知识库分类扩展——新增「工具 Tools」(07) 与「教训 Mistakes」(08) 两类(错误/反模式/踩坑/debug 教训),前端筛选、图谱着色、自动捕获提示词同步更新。
175
178
  - **v0.2.3**:放宽兼容性——`@deepseek-ai/dsh-tools` / `dsh-llm` peer 依赖改为 `>=0.1.0-rc.2 <0.2.0`,跨整个 `0.1.x` 系列均兼容(大多数 DSH 版本可直接安装)。
176
179
  - **v0.2.2**:放宽 `@deepseek-ai/dsh-tools` / `dsh-llm` peer 依赖至 `^0.1.0-rc.7`,同时兼容旧版与新版 DSH。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-memory-eternal",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "记忆核心(Memory Eternal):自研的 DeepSeek Harness 记忆插件,不移植任何既有记忆框架——对话结束后自动沉淀知识卡到本地 Markdown Vault(自研去重、自研 CJK 检索、可 git 管理),设置页提供图形化知识库(统计 / 搜索 / 知识图谱 + 侧边栏一键弹窗),Agent 通过 memory_recall 工具按需召回历史上下文。零人工干预。",
5
5
  "license": "MIT",
6
6
  "repository": {