dsh-memory-eternal 0.6.0 → 0.6.1
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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -58,7 +58,7 @@ export const Config = z.object({
|
|
|
58
58
|
// init = DSH 激活时拉起一次(默认;最低开销,DSH 死后 web 仍活但无人看守)
|
|
59
59
|
// interval= DSH 进程内 setInterval 周期探活+自动拉起(额外 0 内存;DSH 死则停保活)
|
|
60
60
|
// manual = 完全不自动拉起;只在 `dsh-memory open` 时 ensure-alive(最保守)
|
|
61
|
-
autoWebMode: z.
|
|
61
|
+
autoWebMode: z.union([z.const('init'), z.const('interval'), z.const('manual')]).default('init'),
|
|
62
62
|
webPort: z.number().min(1).max(65535).default(7999),
|
|
63
63
|
webCheckIntervalMs: z.number().min(1000).max(600000).default(5000),
|
|
64
64
|
webMaxRestart: z.number().min(1).max(1000).default(10),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-memory-eternal",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "记忆核心(Memory Eternal):自研的 DeepSeek Harness 记忆插件,不移植任何既有记忆框架——对话结束后自动沉淀知识卡到本地 Markdown Vault(自研去重、自研 CJK 检索、可 git 管理),设置页提供图形化知识库(统计 / 搜索 / 知识图谱 + 侧边栏一键弹窗),Agent 通过 memory_recall 工具按需召回历史上下文。零人工干预。",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|