← 返回列表
未验证
DeepSeek Harness 的结构化长期记忆系统。
尚未跑自动兼容性验证,可查看页面内的依赖与入口分析。 · 最近上游提交 2026/8/14 · 已提供中文文档
DeepSeek Harness 的结构化长期记忆系统
综合分
29.4
GitHub 分
29.4
用户评分
—
★ Stars
4
周下载量
—
安装插件(需先安装 dsh CLI 引擎:npm install -g @deepseek-ai/dsh)
dsh plugin --profile web add YYTbit/dsh-plugin-meta-memory该插件未发布到 npm,走 GitHub 源安装(pnpm 若拦截 prepare 脚本,按其提示在 pnpm-workspace.yaml 的 allowBuilds 中放行后重跑)
数据截至 2026/9/18(元数据每日更新 · 实装验证按队列轮转,单条结论的验证时间见上方)
用户评分
还没有人投票,来当第一个
订阅周报,不错过优质插件更新
每周一封 · 高评分插件 + 新用户活动
README
dsh-plugin-meta-memory DeepSeek Harness 的结构化长期记忆系统。 功能说明 教会智能体如何使用结构化系统来组织记忆: - 单元(Units):以 动词-修饰词-名词.unit 命名的工作分类 - 记录(Records):每条记忆都有简要版(快速浏览)和完整版(详细内容) - 索引(Index):自我维护的全局故事线 - 自动注入:相关的简要版会自动注入到上下文中 安装 dsh plugin --profile your-profile add dsh-plugin-meta-memory 工作原理 记忆结构 .meta-memory/ ├── index.md └── units/ ├── debug-auth-module.unit/ │ ├── 0.token-refresh-fail.brief.md │ └── 0.token-refresh-fail.full.md └── read-deeplearning-paper.unit/ ├── 0.transformer-attention.brief.md └── 0.transformer-attention.full.md 简要格式(注入到上下文) token-refresh-fail JWT token refresh returns 401 due to timestamp offset calculation error. 完整格式(按需加载) token-refresh-fail Context Auth module was failing on token refresh after 1 hour. Finding expiresAt calculated using milliseconds instead of seconds. Evidence src/auth/refresh.ts:42 - Math.floor(Date.now() / 1000) fixes it. Relevance Any JWT/token related debugging in the future. CLI 工具 mm init # Initialize memory directory mm list # List all units and records mm read # Read all briefs in a unit mm search # Search briefs by keyword mm index # Show the index 配置 - id: meta-memory name: dsh-plugin-meta-memory config: memoryPath: '~/.dsh/meta-memory' enableInjection: true enableSkill: true maxBriefBytes: 4096 许可证 MIT -- YYTbit
扫码进群