antonkoatl/dsh-message-handoff0

dsh-message-handoff

Per-message session handoff for DeepSeek Harness: a handoff icon next to each message's fork button summarizes the conversation up to that message with an LLM, forks a fresh session carrying the copied history plus the injected summary document, and auto-opens it. The origin session is unchanged.

AI 分析

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

パッケージ
dsh-message-handoff
バージョン
0.1.0
ライセンス
MIT
最終更新
2026/08/22

インストール

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

ドキュメント

README 全文を読む ↗

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.