dsh-memory-eternal 0.2.5 → 0.2.6
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/PUBLISH.md +2 -0
- package/README.md +6 -0
- package/package.json +1 -1
package/PUBLISH.md
CHANGED
|
@@ -37,6 +37,8 @@ npm run build # 生成 lib/client.js
|
|
|
37
37
|
|
|
38
38
|
# 装进当前 profile 试跑
|
|
39
39
|
npx @deepseek-ai/dsh plugin --profile web add F:/absolute/path/to/dsh-memory-eternal
|
|
40
|
+
# 或(DSH profile 是 pnpm workspace,装/更新插件用 pnpm,勿用 npm install,否则 link: 报 EUNSUPPORTEDPROTOCOL)
|
|
41
|
+
# cd ~/.dsh/profiles/web && pnpm add dsh-memory-eternal@latest
|
|
40
42
|
# 重启 dsh web → 设置 → 记忆:看到知识库页面
|
|
41
43
|
# 聊几轮 → ~/.dsh/memory-vault/03-Knowledge/ 出现自动沉淀的知识卡
|
|
42
44
|
```
|
package/README.md
CHANGED
|
@@ -59,9 +59,14 @@ dsh plugin --profile web add github:EternalNight996/dsh-memory-eternal
|
|
|
59
59
|
|
|
60
60
|
# 本地联调(link 本地目录,改代码即时生效)
|
|
61
61
|
dsh plugin --profile web add F:/MyApp/eternal/dsh-memory-eternal
|
|
62
|
+
|
|
63
|
+
# 更新到最新(在 DSH profile 目录里)
|
|
64
|
+
cd ~/.dsh/profiles/web && pnpm add dsh-memory-eternal@latest
|
|
62
65
|
```
|
|
63
66
|
|
|
64
67
|
> 未全局安装 `dsh` 时,可改用 `npx @deepseek-ai/dsh plugin --profile web add dsh-memory-eternal`。
|
|
68
|
+
>
|
|
69
|
+
> ⚠️ **DSH profile 是 pnpm workspace**(本地插件用 `link:` 协议),`npm install` 会报 `EUNSUPPORTEDPROTOCOL`——**请用 `pnpm add`** 装/更新插件。
|
|
65
70
|
|
|
66
71
|
装完**重启 dsh web**:设置 → 记忆 出现知识库页面;侧边栏底部也会出现「记忆」按钮,一键打开完整记忆库弹窗。此后每轮对话自动沉淀知识卡。
|
|
67
72
|
|
|
@@ -173,6 +178,7 @@ dsh-memory-eternal/
|
|
|
173
178
|
|
|
174
179
|
## 📦 发布记录
|
|
175
180
|
|
|
181
|
+
- **v0.2.6**:安装/更新说明补充——DSH profile 为 pnpm workspace,用 `pnpm add dsh-memory-eternal@latest`(勿用 `npm install`,会因 `link:` 报 `EUNSUPPORTEDPROTOCOL`)。
|
|
176
182
|
- **v0.2.5**:安装方式统一为 `dsh plugin --profile web add`(README 标注 npx 备选写法)。
|
|
177
183
|
- **v0.2.4**:知识库分类扩展——新增「工具 Tools」(07) 与「教训 Mistakes」(08) 两类(错误/反模式/踩坑/debug 教训),前端筛选、图谱着色、自动捕获提示词同步更新。
|
|
178
184
|
- **v0.2.3**:放宽兼容性——`@deepseek-ai/dsh-tools` / `dsh-llm` peer 依赖改为 `>=0.1.0-rc.2 <0.2.0`,跨整个 `0.1.x` 系列均兼容(大多数 DSH 版本可直接安装)。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-memory-eternal",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "记忆核心(Memory Eternal):自研的 DeepSeek Harness 记忆插件,不移植任何既有记忆框架——对话结束后自动沉淀知识卡到本地 Markdown Vault(自研去重、自研 CJK 检索、可 git 管理),设置页提供图形化知识库(统计 / 搜索 / 知识图谱 + 侧边栏一键弹窗),Agent 通过 memory_recall 工具按需召回历史上下文。零人工干预。",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|