menotbobbybrown/dsh-plugin-memory0

dsh-plugin-memory

Persistent Knowledge Graph & Long-Term Memory Plugin for DeepSeek Harness (dsh)

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');