插件目录 / Knowledge / dsh-nocturne-memory
dsh-nocturne-memory
未验证 RealAlexandreAI
功能简介
dsh-nocturne-memory — DSH 插件(会话)
未验证 — 尚未实测
dsh-nocturne-memory — DSH 插件(会话) 尚未验证——请自行安装测试。
「未验证」表示我们的自动化 CI 尚未安装过该插件。功能描述与版本兼容性均为作者声明。这不是安全审计,也不代表对第三方代码的背书。
README
dsh-nocturne-memory
Connects DeepSeek Harness to Nocturne Memory: session-start boot protocol plus memory read / search / create / update, backed by your own Nocturne MCP server.
Port of pi-nocturne-memory — same protocol, same tool names.
Tools
| tool | what it does |
|---|---|
nocturne_boot |
load at session start: core memories + recent context + glossary |
nocturne_read |
read a memory by URI (system://…, core://agent, …) |
nocturne_search |
search memories by keywords (optional domain filter) |
nocturne_create |
create a memory node ([Baseline]/[Deviation]/[Result]/[Reusable judgment]) |
nocturne_update |
patch (old_string/new_string) or append to a memory |
Quick start
dsh plugin --profile web add dsh-nocturne-memory
Requires your own Nocturne MCP server (see the Nocturne Memory project).
- id: nocturne-memory
name: dsh-nocturne-memory
config:
mcp_url: http://localhost:PORT/mcp
mcp_auth: Bearer <your token>
| key | required | meaning |
|---|---|---|
mcp_url |
✅ | your Nocturne MCP server URL |
mcp_auth |
– | MCP auth token (Authorization header, e.g. Bearer xxx) |
protocol_version |
– | MCP protocol version (default 2024-11-05) |
Privacy
- Memories live on your own MCP server; this plugin is a thin client and stores nothing locally.
- The auth token lives only in your config file (
mcp_auth) and the MCP session is reused across tool calls — no re-handshake per call, nothing logged. - Only the memory URIs/queries/content you explicitly ask about cross the wire.
Development
npm install
npm run typecheck
npm test # SSE parsing / text extraction
npm run build
Live MCP test (reuses your pi Nocturne config):
node --import tsx tests/real/real-mcp.mjs
License
MIT
安装
装一次目录插件,之后本站所有插件都能让 DeepSeek Harness 自动找、自动装:
dsh plugin add dshbase-catalog 然后对 agent 说「帮我装 dsh-nocturne-memory」,它会在目录里找到并自动安装。文档:dshbase-catalog · 已验证场景包。
Web profile:
dsh plugin --profile web add dsh-nocturne-memory Headless(CLI)profile:
dsh plugin --profile headless add dsh-nocturne-memory 包信息
npm:dsh-nocturne-memory · 版本 — · 实测环境 dsh 0.1.0-rc.6
实测报告
尚未 L3 验证——若已跑过,见下方失败备注。
备注:验证: runtime-fail (0.1.0-rc.6) 浏览全部待验证失败 →
使用场景
给 agent 一套记忆、知识库或检索层,让它不再跨会话丢上下文。
适合谁
跑长项目、想让 agent 记住决策、文档和偏好而不用每次重讲的人。
二次开发建议
记忆/检索后端是缝——插新存储、调蒸馏策略,或加引用与审计轨迹。