truelove-dreamer/dsh-plugin-recall ↗★ 0
dsh-plugin-recall
DeepSeek Harness plugin: cross-session memory for the model. Full-text search all past sessions (SQLite FTS5 via ctx.sessionQuery) and bring the strongest matching excerpts back into the current context — recall earlier decisions, commands, and mistakes.
AI 分析
核心用途是让模型能够检索并引用过去会话中的决策和命令。适合希望 Agent 具备跨会话知识检索能力、避免重复犯错的用户。
インストール
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:truelove-dreamer/dsh-plugin-recallドキュメント
README 全文を読む ↗使用
模型工具 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 : 同样输出。