ishuowang/dsh-sideband1

dsh-sideband

DeepSeek Harness 会话与智能体聊天室之间异步、经 LLM 总结的上下文交接插件。

AI 分析

核心用途是在不同的 DSH 会话或聊天室之间,通过 LLM 自动生成摘要并异步传递上下文。适合需要在多个复杂对话间流转信息、避免手动复制的用户。

包名
dsh-sideband
版本
0.1.0
许可证
MIT
最近更新
2026年8月16日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:ishuowang/dsh-sideband

Configuration

Configure the inserted sideband row in the active profile's cordis.patch.yml when defaults are not enough:

- id: sideband
  name: dsh-sideband
  config:
    provider: ""                 # both empty: use the source Session route
    model: ""
    defaultLastMessages: 12
    maxLastMessages: 500
    maxInputChars: 80000
    maxFocusChars: 4000
    maxOutputTokens: 1200
    maxSummaryChars: 24000
    summarizationTimeoutMs: 120000
    concurrency: 2
    maxRetainedJobs: 200
    allowRoomTargets: true

Set both provider and model, or leave both empty. Even when it uses the source route, Sideband makes a separate one-shot LLM call with its own signal and no tools.