DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Daoing Memory — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

dsh-daoing-memory

Daoing Memory

DeepSeek Harness (DSH) 的自我演化记忆:已积累的经验、日记/事实语义记忆、关注事项跟踪,以及仅追加式审计账本。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add dsh-daoing-memory@0.1.20
README兼容性版本

兼容性与来源证明

Daoing Memory 以 dsh-daoing-memory 发布,当前版本为 0.1.20。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.1.20stable
2026/8/22
0.1.19stable
2026/8/22
0.1.18stable
2026/8/22
查看其余 18 个版本收起版本
0.1.17stable
2026/8/22
0.1.16stable
2026/8/22
0.1.15stable
2026/8/22
0.1.14stable
2026/8/22
0.1.13stable
2026/8/21
0.1.12stable
2026/8/21
0.1.11stable
2026/8/21
0.1.10stable
2026/8/21
0.1.9stable
2026/8/21
0.1.8stable
2026/8/21
0.1.7stable
2026/8/21
0.1.6stable
2026/8/21
0.1.5stable
2026/8/21
0.1.4stable
2026/8/21
0.1.3stable
2026/8/21
0.1.2stable
2026/8/21
0.1.1stable
2026/8/21
0.1.0stable
2026/8/20

相关插件

正在加载相关插件…

最新版
0.1.20
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
2.1 MB
文件数
53
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 1
周下载
80
最近提交
2026/8/22
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

README

dsh-daoing-memory

Self-evolving memory for DeepSeek Harness (DSH) — earned experiences, diary/fact semantic memory, concern tracking, and an append-only audit ledger.

中文文档 →

An agent without memory starts from zero every session. dsh-daoing-memory gives a DSH agent a persistent, self-improving memory that it earns through use: it keeps a diary, distills durable facts and open concerns about the user, accumulates verified experiences, recalls what is relevant, revises what turned out wrong, and records every change in an auditable ledger.

The design follows four verbs — 生 · 用 · 修 · 记 (Generate · Use · Revise · Record).


Why

Most "memory" bolt-ons either dump raw conversation into a vector store, or let the model write anything it likes into a key-value blob. Both fail in practice: the first buries signal in noise, the second lets a single hallucination poison every future session.

dsh-daoing-memory takes a different stance:

  • Memory must be earned. An experience starts as a low-trust candidate and is promoted only after it is corroborated by real use. Nothing reaches high trust by fiat.
  • Two distinct memories. Semantic memory (durable facts about the user + open concerns they care about) is separated from experiential memory (how-to knowledge with a lifecycle). They are written, recalled, and governed differently.
  • Every write is auditable. An append-only ledger records each mutation, so memory drift or poisoning can be detected, attributed, and rolled back.
  • The human stays in the loop. A browser workbench lets you read, correct, promote, and delete memories — memory is a shared artifact, not a black box.

Features

AreaWhat you get
Diary (记)memory_fact — append raw session notes; the substrate everything else is distilled from.
Extraction (生)memory_extract — distill diary entries into durable facts (9 user-centric categories, deduplicated & corroborated) and concerns (todo / thinking / idea / question / decision / commitment, each with a background scene).
Experience lifecycle (生·用·修)memory_ingest, memory_report, memory_revise, memory_refine, memory_verify — experiences are born as candidates, earn trust through reported use, get revised when wrong, and roll back cleanly.
Recall (用)memory_recall — keyword/situation relevance over the shared experience library, with optional context scoping.
Auditmemory_ledger, memory_verify — query the append-only ledger and verify integrity.
Consolidationmemory_consolidate — periodic compaction/housekeeping of the store.
Profile injectionA compact profile snapshot (top facts + open concerns) is injected into the system prompt, so the agent knows the user without being asked.
Workbench UIA browser panel (Fact Diary / Experiences / Ledger / Human Ops) to inspect and curate memory by hand.
Extraction skillA bundled memory-extraction skill that teaches the agent when and how to extract high-quality memory.

Install

Two DSH environments are supported — a source checkout of DSH and an officially installed DSH — and two install channels (npm package name, or a git/GitHub URL). See docs/INSTALL.md for the full matrix including uninstall and skill placement.

Quick start for an officially installed DSH:

# from npm (once published)
dsh plugin --profile web add dsh-daoing-memory

# or straight from GitHub
dsh plugin --profile web add github:daoing/dsh-daoing-memory

# place the extraction skill where DSH loads skills from
node node_modules/dsh-daoing-memory/scripts/install-skill.mjs

Then restart DSH. The memory tools become available to your agent, the profile snapshot starts being injected, and a Memory button appears at the foot of the web left sidebar (beside Settings) — clicking it opens the Memory workbench.

Usage

Once installed, the agent gains the memory_* tools. Typical flow:

  1. During a session the agent appends raw notes with memory_fact.
  2. At a natural pause it runs memory_extract to distill facts + concerns (guided by the memory-extraction skill).
  3. In later sessions memory_recall surfaces relevant experiences; a compact profile snapshot is already present in the system prompt.
  4. When an experience is confirmed useful the agent calls memory_report; when it is wrong, memory_revise.
  5. You can inspect and curate everything in the Memory workbench.

See docs/INSTALL.md for usage details and docs/STATUS.md for what is implemented today.

Design

The architecture, the trust/earning model, the data schema, and the anti-pollution boundaries are documented in docs/DESIGN.md. Current implementation status and extension directions live in docs/STATUS.md.

Project layout

dsh-daoing-memory/
├── lib/                    # prebuilt artifacts (host + browser bundle + typert)
├── src/                    # TypeScript source (for reference & iteration)
├── skill/                  # bundled memory-extraction skill (standalone .md)
├── cordis.patch.yml        # profile patch that wires the plugin into DSH
├── scripts/                # prepare + install-skill helpers
└── docs/                   # INSTALL · DESIGN · STATUS · BUILDING · FAQ · MIGRATION

Building & publishing

This repository ships its build output (lib/) so that installing it never requires the DSH monorepo toolchain. See docs/BUILDING.md for how the package is produced, published to npm, and listed on the DSH plugin marketplace.

License

MIT © daoing

相关插件

继续浏览 memory-context 分类下经过校验的插件。

Memory Plugin@openviking/dsh-memory-plugin适用于 DeepSeek Harness 的 OpenViking 记忆与上下文套件Contextdsh-context用于上下文洞察和管理的 DeepSeek Harness 插件,提供上下文仪表板和上下文命令,帮助了解上下文的构成及其演变过程。Weknora@wxg-prc-cpg/dsh-weknora适用于 DeepSeek Harness (dsh) 的 WeKnora 知识检索工具:通过自有知识库进行语义搜索、文档阅读以及 RAG/代理回答。Mnemondsh-mnemon面向 DeepSeek Harness 的可组合三层记忆控制平面:持久化运行时上下文、可搜索的项目文档、可插拔的长期记忆、受保护的策略、WebUI 和无头工具。