AI Agent Hub
Back to plugins
🧠

dsh-agent-memory

Memory Updated 2026.09.15

Run the following command in DeepSeek Harness:

dsh plugin install jonah791/dsh-agent-memory

Paste the following prompt into your AI chat to install this plugin:

Run dsh plugin install jonah791/dsh-agent-memory in your DeepSeek Harness terminal to install the plugin; the source is available at https://github.com/jonah791/dsh-agent-memory .

About this plugin

An agent's native memory stops at one session plus a compressed checkpoint. Lessons from the last sprint, the owner's stated preferences, the reasoning behind a hard-won decision—all of it evaporates the moment a new session opens. dsh-agent-memory turns memory into a durable, queryable, and reversible asset: structured facts, project knowledge, and episodic experiences are written to a persistent layered store and recalled automatically at session start and on every real user message, so relevant context is already in the window instead of waiting for you to remember to look it up.

Twelve tools cover the full memory lifecycle: write with dedup and merge, keyword and tag search with association chains, id-based revision in three modes (replace, append, patch with uniqueness guarantees plus revision snapshots), soft-archive with batch tiering, near-duplicate merge, a read-only value audit that proposes KEEP / DEMOTE / ARCHIVE / REVIEW actions with evidence, and a time-pyramid browser for discovery. L3 episodic entries auto-compress up through day, week, month, and year summaries while L1 facts and L2 knowledge are never used as compression input. Role-based visibility lets multi-agent workbench deployments scope what each agent can see; when roles are off, filtering is zero and behaviour is identical to single-agent mode.

Built for DSH platform developers whose agents run long-lived projects spanning days or weeks and need continuity. If your agent keeps re-asking what changed in the API last sprint, or your sub-agents cannot share project decisions, this plugin exists for exactly that gap.

Use Cases

  • Agent retains project decisions, API changes, and user preferences across sessions with auto-recall at startup
  • Role-scoped memory visibility in multi-agent workbenches so each sub-agent only sees its assigned entries
  • L3 episodic entries auto-compress up through day, week, month, and year summaries to prevent unbounded growth

Best For

  • DSH platform developers running projects that span days or weeks
  • Teams that need multiple agents to share project context and decision history
  • Individual developers who want a persistent knowledge layer for their agent without an external vector database