dsh-memory
Run the following command in DeepSeek Harness:
dsh plugin install Amengclass/dsh-memory
Paste the following prompt into your AI chat to install this plugin:
Run dsh plugin install Amengclass/dsh-memory inside your DeepSeek Harness profile; the plugin ships as plain ESM JavaScript with no build step, and once installed the agent gains memory_set, memory_get, memory_delete, and memory_search tools. Source: https://github.com/Amengclass/dsh-memory
About this plugin
There is a gap in the DeepSeek Harness ecosystem: an agent that wants to remember a fact or a note has no durable, cross-session write channel. session_search can only read back past conversations; todo_write tracks task state; skills are read-only static docs; settings belong to the operator. None of them let the model actively persist knowledge. dsh-memory fills exactly that gap with a lightweight, model-editable, key-based memory store — letting the agent write, read, and retrieve what it wants to keep, as naturally as calling any other tool.
Four tools form the core: memory_set idempotently upserts an entry under a stable key (with optional tags), memory_get reads one entry or lists all, memory_delete removes by key, and memory_search performs case-insensitive substring matching across keys, values, and tags with tag-based filtering. All records are routed through the built-in ctx.storageDomain seam into the deployment's configured backend (json or sqlite), so there is no manual file management and no need to stand up an external MCP memory server.
This plugin suits DeepSeek Harness developers who want their agent to carry memory across sessions. It ships as plain ESM JavaScript with no build step and no native addons, is MIT-licensed, and exposes only a handful of config knobs (defaults: 1000 entries, 120-char keys, 10000-char values) — install and go.
Use Cases
- Agent remembers user preferences and key facts across sessions
- Lightweight built-in alternative to external MCP memory servers
- Key-and-tag structured retrieval with idempotent writes
Best For
- Developers building multi-turn agents on DeepSeek Harness
- Builders who want agent self-memory without external services
- Users seeking a zero-build, plug-and-play memory plugin
Related Plugins
Traceable, searchable cross-session memory for AI agents that turns conversation knowledge into a typed knowledge graph and recalls relevant subgraphs instead of replaying full history, natively integrated with DeepSeek Harness.
Gives DSH AI cross-session long-term memory, to-do and skill management, plus multi-session orchestration, external AI delegation, and an infinite canvas that grows with you.
dsh-mnemon is a three-tier, pluggable, Agent-driven memory system for DeepSeek Harness, combining Runtime memory, Project Documents, and replaceable Memory Spaces with nine long-term providers.
An opinionated, zero-infrastructure file-based memory protocol: human-readable markdown files plus a bounded always-loaded index, curation discipline, and no database or embeddings.