LYRA-88/workspace_memory_dsh1

dsh-workspace-memory

DSH 跨会话记忆管理插件,包含命题图、三层内存漏斗、混合向量与词法检索(RRF)以及浏览器端审查面板,让智能体记住任务内容和进度。

AI 分析

核心用途是实现超长周期的任务进度跟踪与记忆检索。适合进行复杂、多步骤软件工程任务的用户。使用向量检索功能需要配置 OpenAI 兼容的嵌入端点。

包名
dsh-workspace-memory
版本
0.2.0
许可证
MIT
最近更新
2026年9月6日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:LYRA-88/workspace_memory_dsh

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)。