dsh-memory-eternal 0.2.5 → 0.2.7
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 +7 -2
- 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
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
## 🚀 安装
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
|
-
# 已发布后(npm
|
|
54
|
+
# 已发布后(npm)—— 跨平台通用(无需 cd / 无需平台路径)
|
|
55
55
|
dsh plugin --profile web add dsh-memory-eternal
|
|
56
56
|
|
|
57
57
|
# 从 GitHub
|
|
@@ -61,7 +61,10 @@ dsh plugin --profile web add github:EternalNight996/dsh-memory-eternal
|
|
|
61
61
|
dsh plugin --profile web add F:/MyApp/eternal/dsh-memory-eternal
|
|
62
62
|
```
|
|
63
63
|
|
|
64
|
-
>
|
|
64
|
+
> 跨平台注意:
|
|
65
|
+
> - 未全局安装 `dsh` 时,加 `npx @deepseek-ai/dsh` 前缀:`npx @deepseek-ai/dsh plugin --profile web add dsh-memory-eternal`(Windows/macOS/Linux 通用)。
|
|
66
|
+
> - 要**官方最新**(避免 npmmirror 镜像滞后):`npm_config_registry=https://registry.npmjs.org/ npx @deepseek-ai/dsh plugin --profile web add dsh-memory-eternal`。
|
|
67
|
+
> - **DSH profile 是 pnpm workspace**(本地插件用 `link:`),在 profile 目录用 `pnpm add` 装/更新:`cd ~/.dsh/profiles/web && pnpm add dsh-memory-eternal@latest`(bash/PowerShell);`npm install` 会报 `EUNSUPPORTEDPROTOCOL`。
|
|
65
68
|
|
|
66
69
|
装完**重启 dsh web**:设置 → 记忆 出现知识库页面;侧边栏底部也会出现「记忆」按钮,一键打开完整记忆库弹窗。此后每轮对话自动沉淀知识卡。
|
|
67
70
|
|
|
@@ -173,6 +176,8 @@ dsh-memory-eternal/
|
|
|
173
176
|
|
|
174
177
|
## 📦 发布记录
|
|
175
178
|
|
|
179
|
+
- **v0.2.7**:安装说明改为**跨平台**——主推 `dsh plugin --profile web add`(无需 cd/平台路径),并注明 npx 前缀、官方 registry(避免 npmmirror 滞后)与 pnpm 备选。
|
|
180
|
+
- **v0.2.6**:安装/更新说明补充——DSH profile 为 pnpm workspace,用 `pnpm add dsh-memory-eternal@latest`(勿用 `npm install`,会因 `link:` 报 `EUNSUPPORTEDPROTOCOL`)。
|
|
176
181
|
- **v0.2.5**:安装方式统一为 `dsh plugin --profile web add`(README 标注 npx 备选写法)。
|
|
177
182
|
- **v0.2.4**:知识库分类扩展——新增「工具 Tools」(07) 与「教训 Mistakes」(08) 两类(错误/反模式/踩坑/debug 教训),前端筛选、图谱着色、自动捕获提示词同步更新。
|
|
178
183
|
- **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.7",
|
|
4
4
|
"description": "记忆核心(Memory Eternal):自研的 DeepSeek Harness 记忆插件,不移植任何既有记忆框架——对话结束后自动沉淀知识卡到本地 Markdown Vault(自研去重、自研 CJK 检索、可 git 管理),设置页提供图形化知识库(统计 / 搜索 / 知识图谱 + 侧边栏一键弹窗),Agent 通过 memory_recall 工具按需召回历史上下文。零人工干预。",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|