RealAlexandreAI/dsh-noc-memory2

dsh-noc-memory

DeepSeek Harness 插件:Nocturne Memory 客户端,由用户自建的 Nocturne MCP 服务器支持,提供自动化的长期记忆功能(引导、读取、搜索、创建、更新)。

AI 分析

核心用途是为 DSH 提供基于自建 MCP 服务的长期记忆与会话引导功能。适合需要跨会话保持上下文和记忆的长期任务。必要条件是需部署并配置 Noc Memory 服务器。

包名
dsh-noc-memory
版本
0.2.3
许可证
MIT
最近更新
2026年8月21日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:RealAlexandreAI/dsh-noc-memory

dsh-noc-memory — long-term memory for DeepSeek Harness

dsh-noc-memory

Connects DeepSeek Harness to Noc Memory: session-start boot + daily briefing, plus memory read / search / create / update, backed by your own Noc Memory MCP server on Cloudflare.

Port of pi-noc-memory — same protocol, same tool names.

English · 中文

Tools

toolwhat it does
noc_bootload at session start: core memories + recent context + glossary
noc_briefingtoday's working-memory briefing (system://briefing) — recent activity, expiring, cold candidates
noc_readread a memory by URI (system://…, noc://agent, …)
noc_searchsearch memories by keywords (trigger recall first, then FTS)
noc_createcreate a memory node ([Baseline]/[Deviation]/[Result]/[Reusable judgment])
noc_updatepatch (old_string/new_string) or append to a memory; optional relation evolution marker

Quick start

dsh plugin --profile web add dsh-noc-memory

Requires your own Noc Memory server — deploy it to Cloudflare in minutes: cf-noc-mem.

- id: noc-memory
  name: dsh-noc-memory
  config:
    mcp_url: https://mem.example.com/mcp
    mcp_auth: Bearer 
keyrequiredmeaning
mcp_urlyesyour Noc Memory MCP endpoint (Streamable HTTP)
mcp_authnoBearer if the server requires it

Upgrading from dsh-nocturne-memory (≤0.1.x): renamed to dsh-noc-memory, tools renamed nocturne_*noc_*. Remove the old plugin and re-add the new package; update any prompt text referencing nocturne_* tools.

Why noc_* (not nocturne_*)?

Some agents probe read_mcp_resource before reaching for a memory tool, wasting a round trip (upstream issue #32). Explicit noc_boot / noc_read naming in the tool list and boot-protocol prompt steers models straight to the right tool — no resource shim required.

License

MIT

Related