dsh-hypatia
适用于 DeepSeek Harness 的 Hypatia 技能插件:包含知识图谱查询技能与自动对话记忆桥接功能。
AI 分析
核心用途是实现自动化的对话记忆提取与知识图谱查询。适合需要长期记忆项目规则、规避禁忌并进行向量/全文检索的用户。必要条件是系统 PATH 中需有 `hypatia` CLI。
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:tkliuxing/dsh-hypatia说明文档
阅读完整 README ↗Usage
No manual steps required — the memory bridge is fully automatic: every message is logged, every 5 user messages trigger a check for extractable memories, and new sessions load rules at startup.
On top of that, you can:
| Action | Effect |
|---|---|
| Tell the agent "remember: this project forbids eval" | Explicitly stores a memory (rule / taboo / memory) |
| Tell the agent "forget what you know about X" | Searches and deletes the related knowledge and relationships |
| Ask "what does the knowledge base say about Y", "search earlier decisions" | Triggers the hypatia skill for JSE / full-text / vector queries |
Configuration
Everything is optional; override on the cordis row:
- insert:
- id: dsh-hypatia
name: 'dsh-hypatia'
config:
memoryBridge: true # event bridge on/off (default true)
registerSkills: true # skill registration on/off (default true)
extractInterval: 5 # user messages between TRIGGER:extract (default 5)