antonkoatl/dsh-message-handoff0

dsh-message-handoff

DSH 单条消息会话交接插件:在消息旁提供交接图标,利用 LLM 总结当前上下文,并派生一个携带历史记录与总结文档的新会话。

AI 分析

核心用途是将冗长的会话在特定节点进行“瘦身”并派生新会话,避免上下文超限。适合需要分阶段处理复杂任务、保持会话高效响应的用户。

套件
dsh-message-handoff
版本
0.1.0
授權
MIT
最近更新
2026年8月22日

安裝

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:antonkoatl/dsh-message-handoff

Configuration

Optional config: on the cordis.yml row:

- id: message-handoff
  name: dsh-message-handoff
  config:
    maxInputBytes: 24000   # UTF-8 byte cap for the summary input (oldest dropped first)
    maxTokens: 10000       # summary output budget (reasoning-heavy routes need headroom)
    timeoutMs: 120000      # summary call timeout

The summary model route is the source session's latest logged request route (the model that actually produced the history), falling back to the deployment's default model selection.