LYRA-88/workspace_memory_dsh1

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.

AI 分析

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

パッケージ
dsh-workspace-memory
バージョン
0.2.0
ライセンス
MIT
最終更新
2026/09/06

インストール

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