creativedswork/dsh-expmem0

@creative-dswork/dsh-expmem

适用于 DeepSeek Harness 的经验记忆(Experience Memory)插件。

AI 分析

核心用途是提供会话搜索、事件检索以及经验记忆的读写与遗忘管理。适合需要对历史会话经验进行深度检索和持久化记忆管理的用户。

套件
@creative-dswork/dsh-expmem
版本
0.2.0
授權
MIT
最近更新
2026年8月17日

安裝

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:creativedswork/dsh-expmem

Configuration

Override the expmem row in the profile's cordis.patch.yml:

- id: expmem
  config:
    rootDir: /absolute/path/to/expmem
    maxEntryChars: 20000
    maxPreviewChars: 1000
    maxSearchResults: 20
    promotionEnabled: true
    warningRatio: 0.7
    maxPromotionsPerCycle: 3
    recoveryAfterCompaction: true

rootDir must be absolute. Search is a case-insensitive literal AND over whitespace-separated terms. An empty query lists the newest records. Pressure promotion activates only when the active DSH composition provides both the token meter and model context-window metadata.

To change Recall indexing, override the bundle's existing row:

- id: session-query-sqlite
  config:
    path: /absolute/path/to/recall-index.sqlite
    openAt: first-search