Asher-2000/dsh-memory-connect0

@deepseek-ai/dsh-memory-connect

Cross-session memory plugin for DSH — auto-extraction, semantic recall, scheduled maintenance, LLM-powered consolidation

包名
@deepseek-ai/dsh-memory-connect
版本
0.1.0
许可证
MIT
最近更新
2026年8月19日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Asher-2000/dsh-memory-connect

Configuration

OptionDefaultDescription
path(required)Path to SQLite memory database
openAtstartupWhen to open: startup, first-query, never
maxRecallCount10Max memories to recall per session
decayRate0.02Decay constant (higher = faster decay)
minRelevanceThreshold0.3Min relevance score for recall
journalModewalSQLite journal mode
schedulerEnabledtrueEnable periodic maintenance
schedulerDecayIntervalMs3600000Decay interval (ms), default 1h
schedulerConsolidateIntervalMs21600000Consolidation interval (ms), default 6h
similarityThreshold0.5Semantic 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