DDDFXYqiming/dsh-session-recap0

@dsh-external/dsh-session-recap

为 DeepSeek Harness 会话提供 Claude Code 风格的闲置自动摘要生成插件。

AI 分析

核心用途是在会话闲置时自动生成上下文摘要。适合需要自动整理长会话、快速回顾历史讨论的用户。可在配置文件中自定义闲置时间、字数限制和调用的模型。

包名
@dsh-external/dsh-session-recap
版本
0.0.1
许可证
MIT
最近更新
2026年8月28日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:DDDFXYqiming/dsh-session-recap

Configuration

Override the bundle entry in the profile's cordis.patch.yml:

- insert:
    - id: dsh-session-recap
      name: '@dsh-external/dsh-session-recap'
      config:
        enabled: true
        idleMs: 180000       # idle window in milliseconds
        minTurns: 3          # minimum completed turns
        recentMessages: 30   # recent derived messages sent to the recap call
        maxChars: 400         # recap text limit
        maxInputChars: 24000 # transcript byte limit
        maxOutputTokens: 512
        timeoutMs: 30000
        provider: ''         # empty: reuse the session's latest route
        model: ''            # set provider and model together for a fixed route

An explicit provider and model must be supplied as a pair; leaving both empty reuses the latest route recorded by the session.