ljsysfurryACE/dsh-memory-director ↗★ 0
@agentframe/dsh-memory-director
MemoryDirector plugin for DeepSeek Harness: LLM-driven remember/forget across turns (the official harness has no memory concept)
AI Analysis
为 DSH 引入跨会话的记忆与遗忘管理机制,由轻量模型驱动去重与衰减。适合需要让 Agent 具备长期记忆、在多轮交互中保持上下文认知连续性的用户。
Install
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:ljsysfurryACE/dsh-memory-directorREADME
Read the full README ↗配置
| 字段 | 默认 | 说明 |
|---|---|---|
provider | deepseek-official | 决策用 provider |
model | deepseek-v4-flash | 决策用模型 (便宜快速) |
maxTokens | 256 | 决策输出上限 |
dedupThreshold | 0.8 | 记忆去重阈值 |
forgetThreshold | 0.1 | 遗忘阈值 (重要度衰减) |
storePath | ~/.dsh/memory.json | 持久化路径 |
auto | true | 自动挂钩 agent 循环 |