dsh-memory-eternal 0.2.6 → 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/README.md +6 -7
- package/package.json +1 -1
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
|
|
@@ -59,14 +59,12 @@ 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
|
|
65
62
|
```
|
|
66
63
|
|
|
67
|
-
>
|
|
68
|
-
>
|
|
69
|
-
>
|
|
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`。
|
|
70
68
|
|
|
71
69
|
装完**重启 dsh web**:设置 → 记忆 出现知识库页面;侧边栏底部也会出现「记忆」按钮,一键打开完整记忆库弹窗。此后每轮对话自动沉淀知识卡。
|
|
72
70
|
|
|
@@ -178,6 +176,7 @@ dsh-memory-eternal/
|
|
|
178
176
|
|
|
179
177
|
## 📦 发布记录
|
|
180
178
|
|
|
179
|
+
- **v0.2.7**:安装说明改为**跨平台**——主推 `dsh plugin --profile web add`(无需 cd/平台路径),并注明 npx 前缀、官方 registry(避免 npmmirror 滞后)与 pnpm 备选。
|
|
181
180
|
- **v0.2.6**:安装/更新说明补充——DSH profile 为 pnpm workspace,用 `pnpm add dsh-memory-eternal@latest`(勿用 `npm install`,会因 `link:` 报 `EUNSUPPORTEDPROTOCOL`)。
|
|
182
181
|
- **v0.2.5**:安装方式统一为 `dsh plugin --profile web add`(README 标注 npx 备选写法)。
|
|
183
182
|
- **v0.2.4**:知识库分类扩展——新增「工具 Tools」(07) 与「教训 Mistakes」(08) 两类(错误/反模式/踩坑/debug 教训),前端筛选、图谱着色、自动捕获提示词同步更新。
|
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": {
|