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.

Anywhere Claude Mem — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

@bleed00/dsh-anywhere-claude-mem

Anywhere Claude Mem

A DeepSeek Harness plugin that turns the anywhere-claude-mem git sync into a DSH peer: pull cross-machine memory at session start and push new prompts/observations as they land in the claude-mem worker

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

npx -y @deepseek-ai/dsh plugin --profile web add @bleed00/dsh-anywhere-claude-mem@0.1.0
READMECompatibilityVersions

Compatibility and provenance

Anywhere Claude Mem is published as @bleed00/dsh-anywhere-claude-mem and currently resolves to version 0.1.0. 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.0stable
8/14/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
25.3 kB
Files
8
Surface
any
License
MIT
Source
npm
GitHub
★ 1
Weekly downloads
28
Last push
8/15/2026
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 HarnessContextdsh-contextA DeepSeek Harness plugin for context insight and management, with context dashboard and context command, for understanding how the context is made of, and how it evolves.Weknora@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.

README

dsh-anywhere-claude-mem

A DeepSeek Harness plugin that makes DSH a full peer in the anywhere-claude-mem cross-machine sync of your claude-mem memory.

When a DeepSeek Harness session starts, this plugin pulls the data repository into the local claude-mem worker — the same anywhere-claude-mem startup-pull that the OpenCode startup plugin runs. During the session it also watches the prompt / tool "put" events and, after a debounce, pushes new memory back to git. DeepSeek Harness thus becomes a first-class participant in the bidirectional anywhere-claude-mem sync, so the memory DSH produces is available on every other machine — and the memory other machines produced is already there when DSH starts.

The git sync itself is entirely delegated to the anywhere-claude-mem Python command. This plugin never touches the claude-mem worker API or its SQLite database; it only shells out to the anywhere-claude-mem CLI.

Why the plugin and the watcher coexist safely

The automatic watcher (anywhere-claude-mem watch) already polls the claude-mem database and pushes once a configured number of new observations lands. That detection is based on claude-mem's own rows, independent of which coding tool wrote them — OpenCode, Claude Code, or DeepSeek Harness all feed the same worker. So the watcher alone would eventually push DSH memory too.

dsh-anywhere-claude-mem makes DSH push promptly on the actual "put" instead of waiting for the next poll tick. The two can run at the same time without conflict because anywhere-claude-mem push is idempotent (a push with nothing new creates no commit) and serially locked by anywhere-claude-mem's SyncLock; a push this plugin fires and a push the watcher fires simply serialize, and the duplicate is a no-op.

Install

One-liner from the project checkout (or any profile):

npx -y @deepseek-ai/dsh plugin --profile <profile> add github:Bleed00/Anywhere-claude-mem/dsh-plugin

Or install the anywhere-claude-mem Python package and use its installer, which offers a deepseek setup alongside opencode and writes this bundle into your DSH profile for you:

pip install -e .
anywhere-claude-mem install      # choose "deepseek" at the platform prompt

Requirements

  • A DeepSeek Harness installation with dsh on PATH and a profile to patch.
  • The npm package @bleed00/dsh-anywhere-claude-mem (or this checkout) available to pnpm.
  • anywhere-claude-mem installed (Python package) and configured (anywhere-claude-mem install).
  • The claude-mem worker running (http://127.0.0.1:37700).

Config

FieldDefaultDescription
commandresolved on PATH, then ~/.local/bin/anywhere-claude-memThe anywhere-claude-mem executable.
pullOnSessionStarttrueRun anywhere-claude-mem startup-pull when a DSH session starts.
pushOnPuttruePush new memory back to git on "put" events.
pushDebounceMs10000Coalescing window (ms) for push-on-put.
pushOnEvents["prompt","tool"]Which "put" events count: prompt, tool, or both.

Override any of them in your profile's cordis.patch.yml:

- id: anywhere-claude-mem
  config:
    command: /home/me/.local/bin/anywhere-claude-mem
    pushDebounceMs: 15000
    pushOnEvents:
      - prompt

How it works

  • agent/session-start → anywhere-claude-mem startup-pull (fire-and-forget).
  • agent/pre-step (a prompt was submitted) and tools/post-execute (a tool finished) are the "put" moments. Each arms a debouncer; once pushDebounceMs passes with no new event it runs anywhere-claude-mem push, again fire-and-forget so a sync never blocks a turn.

Development

pnpm install --config.auto-install-peers=false
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-agent, dsh-tools, dsh-skill). Because the peer packages are supplied by the host dsh installation, install with --config.auto-install-peers=false.

License

MIT — see LICENSE © Bleed00