TheHeartFickle/dsh-conversation-folding0

@the-heart-fickle/dsh-conversation-folding-plugin

DSH 插件:提供增强的会话渲染功能,包含可滚动的思考框和分组折叠的工具调用步骤。

AI 分析

该插件对会话中的深度思考过程和繁杂的工具调用步骤进行折叠与分组美化。适合希望净化聊天界面、聚焦核心对话内容的开发者。

包名
@the-heart-fickle/dsh-conversation-folding-plugin
版本
0.1.0
许可证
MIT
最近更新
2026年8月21日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:TheHeartFickle/dsh-conversation-folding

⚙️ 配置

在 profile 的 cordis.patch.yml 中配置:

- id: conversation-folding
  name: '@the-heart-fickle/dsh-conversation-folding-plugin'
  config:
    foldMode: 'all'
    auxVisible:
      - context
      - skill

foldMode 可选值:

行为
all整轮折叠,默认值
toolcall只折叠 thinking 之间的 tool call
none关闭整轮折叠和 tool-call 分组,保留 thinking 增强样式

auxVisible 是“折叠时仍显示”的辅助项例外列表:

  • context:上下文注入行;不在列表中时折叠状态下隐藏。
  • skill:skill 加载行;不在列表中时折叠状态下隐藏。
  • auxVisible: [] 表示所有辅助项都隐藏(相当于之前的全隐藏行为)。