DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Nocturne Memory — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-nocturne-memory

Nocturne Memory

DeepSeek Harness plugin: Nocturne Memory client — automated long-term memory (boot/read/search/create/update) backed by your own Nocturne MCP server.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add dsh-nocturne-memory@0.1.4
READMECompatibilityVersions

Compatibility and provenance

Nocturne Memory is published as dsh-nocturne-memory and currently resolves to version 0.1.4. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.1.4stable
8/19/2026
0.1.3stable
8/17/2026
0.1.2stable
8/17/2026
Show 2 more versionsCollapse versions
0.1.1stable
8/13/2026
0.1.0stable
8/13/2026

Related plugins

Loading related plugins…

Latest
0.1.4
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
19.1 kB
Files
7
Surface
any
License
MIT
Source
npm
Weekly downloads
32
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in memory-context.

Memory Plugin@openviking/dsh-memory-pluginOpenViking memory and context bundle for DeepSeek HarnessWeknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Memsearch Dsh@zilliz/memsearch-dshMemSearch plugin for DeepSeek Harness: shared markdown memory across agents, with capture, pre-step context injection, memory-recall skill, and a skill-candidate review panel.Reme@agentscope-ai/remeReMe client and memory integrations for TypeScript agents

README

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

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.

English · 中文

Tools

toolwhat it does
nocturne_bootload at session start: core memories + recent context + glossary
nocturne_readread a memory by URI (system://…, core://agent, …)
nocturne_searchsearch memories by keywords (optional domain filter)
nocturne_createcreate a memory node ([Baseline]/[Deviation]/[Result]/[Reusable judgment])
nocturne_updatepatch (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>
keyrequiredmeaning
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