sdf-jkl-gh/dsh-memory-panel ↗★ 0
dsh-memory-panel
Persistent memory plugin for DeepSeek Harness: memory_* model tools, automatic memory:recall prompt injection, /memory/api JSON routes, and a 设置→记忆 (Settings → Memory) management panel.
AI Analysis
为 DSH 提供持久化记忆功能,支持智能体自动检索与调用记忆工具,并提供可视化管理面板。适合需要让 AI 记住长期偏好和历史上下文的用户。
Install
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:sdf-jkl-gh/dsh-memory-panelREADME
Read the full README ↗Usage
As a model
Just talk naturally — or call the tools directly:
memory_save(title="User prefers Chinese thinking", content="...", tags=["preference"], importance="high")
memory_search(query="Chinese thinking")
memory_list(tag="preference")
memory_get(id="m...")
memory_delete(id="m...")
Every agent automatically sees the top saved memories through the
memory:recall section (marked [重要] when high importance) and is told to
call memory_search for the full picture.
In the GUI
Open Settings → 记忆 (Memory): browse all entries with stats, search,
create/edit/delete. The panel talks to the host through
POST /memory/api/* JSON routes.