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.

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

@cnzgray/dsh-claude-auto-memory

Claude Auto Memory

Bridge Claude Code's ~/.claude/projects/<encoded>/memory/MEMORY.md into DeepSeek Harness at session start, plus a /claude-memory status command.

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

npx -y @deepseek-ai/dsh plugin --profile web add @cnzgray/dsh-claude-auto-memory@0.1.1
READMECompatibilityVersions

Compatibility and provenance

Claude Auto Memory is published as @cnzgray/dsh-claude-auto-memory and currently resolves to version 0.1.1. 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.1stable
8/14/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
16.6 kB
Files
4
Surface
any
License
MIT
Source
npm
GitHub
★ 3
Weekly downloads
27
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.Mnemondsh-mnemonComposable three-tier memory control plane for DeepSeek Harness: persistent runtime context, searchable project documents, pluggable long-term memory, guarded strategies, WebUI, and headless tools.

README

@cnzgray/dsh-claude-auto-memory (DeepSeek Harness plugin)

把 Claude Code 的自动记忆(~/.claude/projects/<encoded>/memory/MEMORY.md)在会话开始时桥接进 DeepSeek Harness(DSH / Cordis)。

  • 每次 agent/session-start 注入一次 MEMORY.md(进入对话历史,全程可见)
  • 上限 200 行 / 25 KB(先到先截断),80% 时追加 size warning
  • 未初始化项目仍注入创建引导(bootstrap)
  • 提供 /claude-memory 命令查看状态(路径 / 行数 / 字节数 / topic 列表)

安装与装载

本包声明了 dsh.bundle,dsh plugin add 会自动把它加入 profile 的 bundle 层栈并挂载 entry,无需手动改任何 yml:

# 从 npm 安装(发布后)
dsh plugin --profile web add @cnzgray/dsh-claude-auto-memory

# 或从本地路径 / git 仓库(monorepo 子目录)/ tarball 安装
dsh plugin --profile web add ./packages/claude-auto-memory
dsh plugin --profile web add github:cnzgray/dsh-plugins/packages/claude-auto-memory

# 校验装配后的树(不启动)
dsh --profile web --dump-config | grep -A3 claude-auto-memory

# 重启 web profile(会杀掉当前 GUI 会话)
dsh web

验证

  • 新会话开始时,宿主日志应出现 [memory] loaded: <path> 或 bootstrap 提示。
  • 在输入框输入 /claude-memory 应显示记忆文件状态。

注意

  • 该插件是实时只读桥:它读的是 Claude Code 已存在的 ~/.claude/projects/,不会复制/迁移,Claude Code 侧更新后下次会话即生效(mtime 缓存会失效重读)。
  • 插件源码在 profile 之外,cordis-plugin-hmr(root: ['.'])不会监视它;改代码后需重启 dsh web。
  • 想要 DSH 原生记忆(不依赖 Claude Code 的文件),参考官方 deepseek-ai/deepseek-harness Discussion #525。