Asher-2000/dsh-memory-connect ↗★ 0
@deepseek-ai/dsh-memory-connect
Cross-session memory plugin for DSH — auto-extraction, semantic recall, scheduled maintenance, LLM-powered consolidation
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Asher-2000/dsh-memory-connect说明文档
阅读完整 README ↗Configuration
| Option | Default | Description |
|---|---|---|
path | (required) | Path to SQLite memory database |
openAt | startup | When to open: startup, first-query, never |
maxRecallCount | 10 | Max memories to recall per session |
decayRate | 0.02 | Decay constant (higher = faster decay) |
minRelevanceThreshold | 0.3 | Min relevance score for recall |
journalMode | wal | SQLite journal mode |
schedulerEnabled | true | Enable periodic maintenance |
schedulerDecayIntervalMs | 3600000 | Decay interval (ms), default 1h |
schedulerConsolidateIntervalMs | 21600000 | Consolidation interval (ms), default 6h |
similarityThreshold | 0.5 | Semantic similarity threshold (0-1) |
Full configuration example:
- id: memory
name: '@deepseek-ai/dsh-memory-connect'
config:
path: ~/.dsh/memory.db
openAt: startup
maxRecallCount: 10
decayRate: 0.02
journalMode: wal
schedulerEnabled: true
schedulerDecayIntervalMs: 3600000
schedulerConsolidateIntervalMs: 21600000
similarityThreshold: 0.5