sdf-jkl-gh/dsh-memory-panel0

dsh-memory-panel

DeepSeek Harness 的持久化记忆插件,包含模型工具、提示词注入及记忆管理面板

AI 分析

为 DSH 提供持久化记忆功能,支持智能体自动检索与调用记忆工具,并提供可视化管理面板。适合需要让 AI 记住长期偏好和历史上下文的用户。

包名
dsh-memory-panel
版本
1.1.0
许可证
MIT
最近更新
2026年8月15日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:sdf-jkl-gh/dsh-memory-panel

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.