DeepSeek Harness plugin

dsh-memory-vi

Per-project long-term memory for DeepSeek Harness, backed by SQLite.

Jump to install

Source facts

Repository
zxck5xz/dsh-memory-vi
Latest update
Aug 20, 2026
Category
Memory
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-21

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/zxck5xz/dsh-memory-vi
Plugin: dsh-memory-vi
Author: zxck5xz

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer2 files
README.mdSource · read only

dsh-memory-vi

Per-project long-term memory for DeepSeek Harness (DSH), backed by SQLite.

The plugin registers three tools: memory_save, memory_recall, memory_search. Memories are scoped per project (derived from the session working directory), so each project keeps its own long-term context across sessions.

  • No native dependencies: uses node:sqlite (Node 22.19+ / 24+).
  • Data lives in $DSH_HOME/memory/memory.db (default ~/.dsh/memory/memory.db).

Install

dsh plugin --profile desktop add "github:zxck5xz/dsh-memory-vi#main"

Restart dsh web (or the desktop app) after adding.

Usage

Ask the model to remember things in a session, e.g.:

  • "Lưu lại rằng dự án này dùng port 3000" → memory_save
  • "Nhớ lại kiến trúc của dự án này" → memory_search / memory_recall

Tools

ToolPurpose
memory_saveSave a memory: content (required), key (optional), tags (optional).
memory_recallRetrieve one memory by key.
memory_searchKeyword search across content/key, optional tags filter, limit (default 10).

Configuration

# profile cordis.patch.yml
- id: dsh-memory-vi
  name: dsh-memory-vi
  config:
    root: C:/data/memory   # optional; defaults to $DSH_HOME/memory

Development

npm install
npm run build   # tsc -> lib/
npm test        # runs db selfcheck

License

MIT