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. 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.