dsh-memory-eternal 0.4.23 → 0.4.24
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 +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -173,6 +173,11 @@ dsh plugin --profile web add F:/MyApp/eternal/dsh-memory-eternal
|
|
|
173
173
|
| 去重阈值 | 0.62 | 词法去重 Jaccard 相似度阈值 |
|
|
174
174
|
| 捕获最小长度 | 200 | 少于该字符数不触发捕获 |
|
|
175
175
|
| 日配额 | 60 | 每天最多自动写卡数,防止烧 token |
|
|
176
|
+
| 记忆库目录 | 空 | 留空 = `~/.dsh/memory-vault`;可指向任意目录(如 Obsidian Vault) |
|
|
177
|
+
| vaultProfiles | [] | 多 Vault 配置:`[{name, path}]` 命名分库 |
|
|
178
|
+
| activeVault | '' | 当前激活的 Vault(对应 vaultProfiles 中的 name) |
|
|
179
|
+
| sessionBudgetChars | 80000 | 会话级 token 预算(字符数),供 harness 触发压缩 |
|
|
180
|
+
| recallEmbedding | '' | 语义召回 provider(空=零依赖 bigram + LLM 判定兜底) |
|
|
176
181
|
|
|
177
182
|
---
|
|
178
183
|
|
|
@@ -226,7 +231,10 @@ dsh-memory-eternal/
|
|
|
226
231
|
|
|
227
232
|
## 📦 发布记录
|
|
228
233
|
|
|
229
|
-
- **v0.4.
|
|
234
|
+
- **v0.4.23**:项目瘦身——README 图片改 GitHub raw 链接,`files` 白名单移除 assets/docs/PUBLISH,npm 包从 ~10MB 降至 **50 KB**(99.5% 缩减);`/budget` 路由 500 防御降级 + fetchAll 容错;跨库聚合路由 try/catch 安全回退。
|
|
235
|
+
- **v0.4.22**:每日回顾简报「查看/收起」toggle(并入用量面板)、去掉左侧栏第 5 项。
|
|
236
|
+
- **v0.4.21**:筛选按钮移到搜索框右边;`mergeCards` 抽取到 vault.js + 单元测试覆盖。
|
|
237
|
+
- **v0.4.6**:记忆侧优化**收官**——**批量智能合并**、**跨库聚合图谱/检索**、**语义召回升级**、**每日回顾定时生成**、**今日简报**。
|
|
230
238
|
- **v0.4.5**:记忆侧**核心功能优化**——**注入体积可配置**、**多 Vault/多 Profile**、**每日回顾+用量统计**、**自动归档整理建议**(非破坏预览)、**召回用户反馈**、**会话级 token 预算**、**上下文压缩接口**(`/compress`)。
|
|
231
239
|
- **v0.4.3**:记忆侧**省 token/提质量**——沉淀预筛(无可复用信号直接跳过、不触发 LLM);召回按 `minScore` 过滤弱命中、注入片段截断到 130 字。
|
|
232
240
|
- **v0.4.2**:修复 GitHub/npm 顶部演示 GIF 无法显示(压缩至 README 10MB 阈值以下,8MB)。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-memory-eternal",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.24",
|
|
4
4
|
"description": "记忆核心(Memory Eternal):自研的 DeepSeek Harness 记忆插件,不移植任何既有记忆框架——对话结束后自动沉淀知识卡到本地 Markdown Vault(自研去重、自研 CJK 检索、可 git 管理),设置页提供图形化知识库(统计 / 搜索 / 知识图谱 + 侧边栏一键弹窗),Agent 通过 memory_recall 工具按需召回历史上下文。零人工干预。",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|