dsh-hypatia
Hypatia skills for DeepSeek Harness: knowledge-graph query skill plus automatic conversation-memory bridge. Requires the `hypatia` CLI on PATH.
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)