menotbobbybrown/dsh-plugin-memory0

dsh-plugin-memory

用于 DeepSeek Harness 的持久化知识图谱与长期记忆插件

AI 分析

核心用途是提供长期记忆存储与检索。适合需要让 Agent 记住用户偏好、保存关键信息并在后续对话中通过语义召回相关上下文的任务。

包名
dsh-plugin-memory
版本
0.1.0
最近更新
2026年8月22日

安装

此插件尚未提供可验证的 bundle,或兼容性检查未通过。请先阅读仓库说明。 阅读完整 README ↗

CLI Usage


## Programmatic Usage (Cordis API)

```typescript
import { Context } from 'cordis';
import * as MemoryPlugin from 'dsh-plugin-memory';

const ctx = new Context();
ctx.plugin(MemoryPlugin);

// Save to memory
ctx.memory.remember('Target database is PostgreSQL 16');

// Recall from memory
const results = ctx.memory.recall('database version');