truelove-dreamer/dsh-plugin-recall0

dsh-plugin-recall

DSH 跨会话记忆检索插件,支持通过 SQLite FTS5 全文搜索历史会话,并将匹配片段召回至当前上下文。

AI 分析

核心用途是让模型能够检索并引用过去会话中的决策和命令。适合希望 Agent 具备跨会话知识检索能力、避免重复犯错的用户。

包名
dsh-plugin-recall
版本
0.1.1
最近更新
2026年8月14日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:truelove-dreamer/dsh-plugin-recall

使用

模型工具 recall:

recall query: "we decided to use sqlite"     # 默认返回最多 5 个会话
recall query: "publish script" limit: 3
recall query: "权限绕过" sessionIds: ["s_xxx"]   # 限定会话范围

返回每个命中会话:session id、时间、事件类型、live/persisted 标记、最强匹配片段。查询按字面短语处理(永不解释为 FTS 可执行语法)。

人类命令 /recall : 同样输出。