LYRA-88/workspace_memory_dsh ↗★ 1
dsh-workspace-memory
DSH 跨会话记忆管理插件,包含命题图、三层内存漏斗、混合向量与词法检索(RRF)以及浏览器端审查面板,让智能体记住任务内容和进度。
AI 分析
核心用途是实现超长周期的任务进度跟踪与记忆检索。适合进行复杂、多步骤软件工程任务的用户。使用向量检索功能需要配置 OpenAI 兼容的嵌入端点。
安裝
$
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)。