menotbobbybrown/dsh-plugin-memory ↗★ 0
dsh-plugin-memory
Persistent Knowledge Graph & Long-Term Memory Plugin for DeepSeek Harness (dsh)
安装
此插件尚未提供可验证的 bundle,或兼容性检查未通过。请先阅读仓库说明。 阅读完整 README ↗
说明文档
阅读完整 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');