LYRA-88/workspace_memory_dsh ↗★ 1
dsh-workspace-memory
dsh的跨会话记忆管理插件,让agent记住每一个任务的内容和进度。包含命题图、三层内存漏斗、混合向量 + 词法检索(RRF)以及浏览器端审查面板。 | Cross-session memory management for DSH — lets the agent remember the content and progress of every task while executing. Includes a proposition graph, three-layer memory funnel, hybrid vector + lexical retrieval (RRF), and a browser-side review panel.
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:LYRA-88/workspace_memory_dsh说明文档
阅读完整 README ↗Embedding configuration
An OpenAI-compatible endpoint is configured through api.json at the plugin root (a /project_memory/api.json override is also honored):
{ "embedding": { "baseUrl": "https://…/v1", "apiKey": "sk-…", "model": "text-embedding-3-small", "dimensions": 1536 } }
Missing or invalid config → lexical-only mode (needsReindex flags the subprojects for later memoryReindex).
嵌入配置
通过插件根目录的 api.json 配置 OpenAI 兼容端点(也支持 /project_memory/api.json 覆盖):
{ "embedding": { "baseUrl": "https://…/v1", "apiKey": "sk-…", "model": "text-embedding-3-small", "dimensions": 1536 } }
缺失或无效配置 → 纯词法模式(needsReindex 标记相应子项目,等待后续 memoryReindex)。