@deepseek-ai/dsh-fusion
将会话融合插件,可将两个或多个 DSH 会话合并为一个持久、可继续的单一会话,支持跨工作区融合及 Agent 规划。
AI 分析
核心用途是整合分散的对话上下文。适合需要将多个独立讨论分支合并、让大模型基于完整背景继续推理的复杂任务。
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:omdsh-dev/dsh-fusion说明文档
阅读完整 README ↗Configuration
| Field | Default | Meaning |
|---|---|---|
maxSources | 8 | Unique sources per call; hard limit 32. |
maxMessages | 500 | Projected messages retained and natively materialized before byte fitting. |
maxFusedBytes | 131072 | Bounded planning/provenance JSON UTF-8 byte limit. |
maxMessageBytes | 16384 | Per-message UTF-8 byte limit. |
maxTitleBytes | 160 | Title UTF-8 byte limit. |
allowCrossWorkspace | false | Permit source cwd values different from the caller. |
enableAgentPlanning | true | Permit requests to run a temporary planning Agent. |
plannerMaxTokens | 8192 | Planning Agent output token cap, from 256 through 8192. Reasoning is disabled for planner requests when the selected model exposes an effort control. |