yan5236/dsh-memory1

@nanmicoder/dsh-memory

DeepSeek Harness 的长期记忆系统,基于会话日志提供两阶段提取与整合管道,支持摘要注入和记忆工具。

AI 分析

核心用途是为 DSH 赋予跨会话的长期记忆能力,自动提取和整合历史对话。适合需要 AI 记住历史上下文、进行连续性长期任务的用户。

套件
@nanmicoder/dsh-memory
版本
0.1.1
授權
MIT
最近更新
2026年8月16日

安裝

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

Configuration

The composition config provides the base layer (the bundled config: {} uses all defaults); the settings page overrides common entries and persists them to DSH storage:

- id: dsh-memory
  config:
    memoryRoot: C:/path/to/memories   # default $DSH_HOME/memories
    provider: deepseek-official       # optional: pin the pipeline model route
    model: deepseek-v4-flash          # paired with provider
    consolidationCooldownMs: 21600000 # consolidation cooldown (6 h default)
    idleDebounceMs: 180000            # post-turn idle window (3 min default)
    maxRolloutsPerRun: 3              # sessions extracted per run
    maxSummaryChars: 8000             # injected-summary character cap

See README_ZH.md for the full option table.