dsh-memory
September 4, 2026 ยท View on GitHub
Cross-session semantic memory for DeepSeek Harness โ installed into any profile, so your agent actually remembers you across sessions.
๐ English ยท ็ฎไฝไธญๆ
dsh-memory registers two tools for the web / headless profiles, so your agent can remember you across sessions:
memory_addโ persist a fact worth keeping long-term, auto-vectorized on the way in.memory_searchโ recall relevant facts by semantics (cosine similarity), with a keyword fallback./mem <question>โ type this in the composer and the agent will callmemory_searchfirst (results render as a collapsible tool card), then answer from memory.
Under the hood: Zhipu embedding-3 (2048-dim) + SQLite (node:sqlite) + cosine similarity. Zero new infrastructure โ no vector database, no sidecar containers. Hundreds to thousands of memories recall in milliseconds.
Why
Your agent forgets everything between sessions. dsh-memory gives it a durable, semantic recall layer without adding a new service to run. It solves the "who am I / what did we agree on" problem with a few hundred bytes of SQLite and one HTTP call per write.
Features
- Zero-config, never crashes โ a missing Zhipu key, a missing database, a missing
toolsservice, or a failing embedding call all degrade gracefully. This plugin will never take the DSH tree down (see Design guarantee). - Semantic recall with keyword fallback โ
memory_searchscores by embedding cosine similarity first, then weights keyword hits; when embeddings are unavailable it falls back to pure keyword (bigram) matching. - 8s embedding timeout โ on a bad or missing network it fails fast and falls back to keyword search instead of hanging the session.
- Write-time semantic dedup (merge) โ
memory_addruns one cosine pass over the library before writing; a new fact that is highly similar to an existing entry (cosine โฅ 0.9) merges into that row โ keeps the latest wording, inherits/updatescategory, maintainsupdated_at, and never adds a duplicate (returnsmerged: true/false). Correction convention: to override a stale/conflicting memory, simply record the new fact โ newest wins. - SQLite WAL + busy_timeout=5000 โ applied when the DB opens; concurrent writers (e.g. DSH web + the Jarvis brain sharing one library) no longer hit
SQLITE_BUSY.
Installation
This plugin follows the official DSH bundle convention (dsh.bundle in package.json), so dsh plugin recognizes it and activates it as a configuration layer โ not a plain dependency.
Install into the target profile (e.g. web):
dsh plugin --profile web add dsh-memory
After installing, restart DSH web for it to take effect (the bundle layer is only composed at startup):
systemctl restart dsh # or restart however you run DSH
Local / pre-release install:
# Put this directory into the profile's node_modules and append "dsh-memory"
# to dsh.profile.bundles in package.json, then restart.
Configuration
Everything is optional โ skip it all and the plugin still works (falling back to keyword search):
| Config | Description | Default |
|---|---|---|
enabled | false disables tool registration | true |
semantic | false skips embeddings, keyword-only | true |
memoryDbPath | SQLite database path | ~/.dsh-memory/memories.db |
zhipuEnvPath | Path to the Zhipu credentials .env file | ~/.dsh-memory/.memenv |
forceMemoryWords | Force-memory signal words (array). When any word appears in a user message, the agent must call memory_add first, then answer | [] (disabled by default) |
forceMemoryWords example (set in your profile's cordis.patch.yml, not in the public repo):
- id: dsh-memory
config:
forceMemoryWords:
- ่ฎฐไฝ
- ้่ฆ
- ็่ดต
- ็นๅซ
- ๅกๅฟ
- ไธๅฎ
- ๅฟ
้กป
Zhipu credentials are read from environment variables first, then from the file at zhipuEnvPath:
ZHIPU_API_KEY=your-zhipu-key
ZHIPU_BASE_URL=https://open.bigmodel.cn/api/paas/v4/
Get a Zhipu key for free at open.bigmodel.cn (embedding-3 is billed per use).
Design guarantee
This plugin was born from a real incident: a misconfigured plugin sent a DSH web profile into a crash-loop. So dsh-memory is deliberately defensive:
apply()is wrapped in an overalltry/catchโ no error is ever thrown up into the DSH tree.injectonly declarestools(a servicedsh-basealways provides). It does not depend ondsh-llm,agents, orhttp.- A missing key / database / service, or a failed embedding call โ it logs and degrades, never interrupting startup.
- Errors raised inside a tool's
execute()are caught and returned as ordinary results, never bubbling up into a session exception.
Tools
memory_addโ write a fact worth remembering; vectorized automatically.memory_searchโ semantically recall the most relevant facts for a question./memโ a manual override: "search memory first, then answer." If you're not sure the agent will recall on its own, type/mem <question>and it will run a semantic search, inject the results, and answer from them.
Storage schema
memories(id, text, category, source, created_at, updated_at)
memory_embeddings(memory_id, dim, vector) -- 2048-dim JSON array