Plugin directory / Knowledge / dsh-claude-mem
dsh-claude-mem
Unverified Bleed00
What it does
DeepSeek Harness plugin integrating claude-mem (memory for dsh)
Unverified — not yet verified
DeepSeek Harness plugin integrating claude-mem (memory for dsh) Not yet verified — install and test it yourself.
“Unverified” means our automated CI has not yet installed this plugin. Feature descriptions and version compatibility are the author’s claims. This is not a security audit and not an endorsement of third-party code.
README
dsh-claude-mem
A DeepSeek Harness plugin that integrates claude-mem: query persisted cross-session memory, inject per-project context at session start, save manual memories, and drive session summarization — all through a local claude-mem worker's HTTP API.
It registers the model-facing tools mem_search, mem_timeline, mem_get_observations, mem_save, and mem_context, the mem-search skill, and the lifecycle hooks (agent/session-start context injection, optional tools/post-execute ingestion, optional agent/turn-stopping summarization). It is a single self-contained package with no monorepo-only dependencies.
Install
One-liner with npx (no global install — npx fetches the dsh launcher anddsh plugin forwards add to pnpm in the target profile):
npx -y @deepseek-ai/dsh plugin --profile demo add @bleed00/dsh-claude-mem
If you already have dsh on PATH, the same command without npx:
dsh plugin --profile demo add @bleed00/dsh-claude-mem
npm (recommended — ships prebuilt lib/, no build permission needed):
npx -y @deepseek-ai/dsh plugin --profile demo add @bleed00/dsh-claude-mem
GitHub (sources; runs a prepare build on first install):
npx -y @deepseek-ai/dsh plugin --profile demo add github:Bleed00/dsh-claude-mem
A GitHub install fetches sources, not build output, so pnpm runs this package's prepare script to build from src/. pnpm ≥10 refuses to run a git dependency's prepare until it is allowlisted; the first add fails and points at the fix — copy the exact package key pnpm printed into the profile's pnpm-workspace.yaml:
allowBuilds:
'@bleed00/dsh-claude-mem': true
then re-run the add. Treat that allowance as permission to run this package's code at install time; pin a commit for reproducible installs:
dsh plugin --profile demo add github:Bleed00/dsh-claude-mem#<sha>
Local checkout:
dsh plugin --profile demo add ./dsh-claude-mem
Requirements
- A DeepSeek Harness installation with
dshonPATH. - The claude-mem worker already running on its default port (
http://127.0.0.1:37700). Override with thebaseUrlconfig or theDSH_MEM_BASE_URLenvironment variable.
Config
| Field | Default | Description |
|---|---|---|
baseUrl |
http://127.0.0.1:<37700 + uid % 100> |
Worker base URL. |
timeoutMs |
30000 |
Per-request timeout (ms). |
dedupe |
true |
Collapse duplicate observations in query results (content fingerprint, never identity). |
platformSource |
unset | Optional platform filter; omitted = search all memory. |
project |
unset | Project name; defaults to the session cwd basename. |
injectContext |
true |
Inject session-start context. |
ingest |
false |
Save observed tool results as memories. |
summarize |
false |
Summarize sessions on turn stop. |
toolFilter.names |
read, write, edit, bash |
Tools observed when ingest is true. |
Platform scoping is a signal, never a restriction: default requests are unfiltered, and platformSource only adds an opt-in filter.
Duplicate handling
The worker can persist the same observation many times (a boilerplate "session
initiated" record, or a re-run tool result) — identical content, different id.
With dedupe: true (the default), query results collapse those copies: an
observation's content fingerprint is built from title + subtitle +text + narrative + facts (normalized), so two entries that merely share a
generated title but differ in narrative are kept. The first copy (lowest id)
is retained. Structured results (mem_get_observations) are deduplicated by
fingerprint; rendered index/text results are deduplicated by exact rendered
row. Set dedupe: false to see the raw, unfiltered results.
Example override in the profile's cordis.patch.yml
- id: claude-mem
config:
baseUrl: http://127.0.0.1:37700
platformSource: dsh
ingest: true
summarize: true
Tools
| Tool | Purpose |
|---|---|
mem_search |
Search memory; returns an index (ids, titles, types). |
mem_timeline |
Get context around one observation. |
mem_get_observations |
Fetch full details for ids. |
mem_save |
Save one manual memory. |
mem_context |
Render the worker's session-start context text. |
The mem-search skill teaches the model the search → filter → fetch workflow that keeps token usage low.
Development
pnpm install
pnpm run build # tsc + tsdown → lib/index.js
pnpm test
The package targets Node ≥ 20.12, TypeScript 6.0, and is authored against the @deepseek-ai/* framework packages (cordis, schemastery, dsh-tools, dsh-llm, dsh-skill, dsh-agent).
License
Apache-2.0 © Bleed00
Install
Install the catalog once, then DeepSeek Harness can find and install any plugin from this site automatically:
dsh plugin add dshbase-catalog Then say "install dsh-claude-mem for me" — your agent finds it in the directory and installs it. Docs: dshbase-catalog · verified packs.
This plugin is GitHub source (not published to npm) — install it straight from the repo:
Web profile:
dsh plugin --profile web add github:Bleed00/dsh-claude-mem Headless (CLI) profile:
dsh plugin --profile headless add github:Bleed00/dsh-claude-mem Test report
Not yet L3-verified — see failure note below if we already ran it.
Note: 验证: install-fail (0.1.0-rc.6) Browse all pending failures →
When to use it
Give the agent a memory, a knowledge base, or a retrieval layer so it stops forgetting context between sessions.
Who it's for
Users running long projects who want the agent to remember decisions, docs, and preferences without re-explaining.
For developers — extending it
The memory/retrieval backend is the seam — plug a new store, tune what gets distilled, or add citation and audit trails.