AI Agent Hub
Back to plugins
🧠

dsh-md-memory

Memory Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install CuteSamurai24/dsh-md-memory

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

Run the dsh plugin install command in your terminal to install this plugin; the full source is at https://github.com/CuteSamurai24/dsh-md-memory . After installation, restart dsh web for the changes to take effect.

About this plugin

Across multiple sessions, the model forgets the preferences you keep repeating, the corrections you have made, and the reusable lessons that matter. The community already offers heavier memory plugins with auto-extraction, vector search, and settings dashboards, but if you want the lightest, most transparent way to carry key context forward, dsh-md-memory exists for exactly that.

The idea is straightforward: the model writes what should persist as Markdown files under ~/.dsh/memory using a single tool called memory. Three layers keep things organized - user.md holds cross-project preferences, agent/MEMORY.md stores hot rules, and agent/topics/*.md keeps on-demand topic knowledge. At the start of each new session the host injects the stored content into the context. Subagents have no write access, so parallel tasks cannot overwrite each other; and if you say "remember this" or "from now on do it this way" but nothing was saved in that turn, the host nudges the model to write it down.

Who is it for? If your ideal of memory is a handful of plain text files you can open in any editor, read, edit, and delete at will - with no vector engine, no automatic extraction, no browser panel - then this plugin fits. It stays small and bounded (8 KB for user, 12 KB for hot rules, 20 KB per topic), coexists with AGENTS.md and heavier memory suites, as long as no other plugin registers a tool with the same name memory.

Use Cases

  • Carry model preferences and repeated corrections across projects
  • Write reusable lessons as Markdown files injected at the start of each session
  • Replace opaque memory plugins with plain-text files you can open and edit

Best For

  • Users who prefer plain-text files over vector engines or auto-extraction
  • People who want lightweight memory and want to manually review, edit, or delete stored content
  • Developers who use AGENTS.md for project facts and need one global cross-project memory layer