
havingautism/dsh-ultra-ui
30Last commit Aug 15, 2026
dsh-ultra-ui DSH plugin
dsh-ultra-ui is a DSH plugin that overrides the tool.call.presentation slot to display every Tool Call as a compact, expandable, and replayable folded row. It works with any tool, including those from third-party plugins, without adding extra system prompts or tokens.
How to install the dsh-ultra-ui DSH plugin
dsh plugin --profile web add github:havingautism/dsh-ultra-uiCopying does not run this command. Review the repository and version before installing the dsh-ultra-ui DSH plugin.
dsh-ultra-ui DSH plugin data source
dsh-ultra-ui DSH plugin snapshot date: Aug 16, 2026
discovered
What the dsh-ultra-ui DSH plugin can do
- Collapse any Tool Call into a compact row showing tool name and parameter summary.
- Expand to view full parameters, results, errors, and trace inspection links.
- Derive state only from recorded call/result blocks, consistent with live display and session replay.
- Does not add model tools, system prompts, or request tokens.
- Works with tools from third-party plugins without a whitelist.
Where the dsh-ultra-ui DSH plugin fits
- Quickly scan tool calls in a busy DSH session without reading full details.
- Inspect specific tool parameters and results by expanding individual rows.
- Replay a session and see the same collapsed/expanded behavior as during live interaction.
- Debug tool calls from third-party plugins with consistent UI.
- Navigate to trace inspection for a specific tool call directly from the expanded row.
Who the dsh-ultra-ui DSH plugin is for
- DSH users who frequently interact with tool calls and want a cleaner Web UI.
- Developers of third-party DSH plugins who want their tool calls to be displayed in a consistent, user-friendly format.
dsh-ultra-ui DSH plugin limitations
- Requires the Harness to provide a single type of 'tool.call.presentation' slot; older versions without this slot will not be affected by this plugin.
- Only one plugin can occupy the 'tool.call.presentation' slot in a session.
- Parameter summary preferentially reads common parameters like 'title', 'question', 'query', 'path', and 'command'; unknown parameters fall back to the beginning of the recorded JSON.
dsh-ultra-ui DSH plugin: from the repository README
Quoted from the havingautism/dsh-ultra-ui README, the upstream source of the dsh-ultra-ui DSH plugin. Copyright remains with the original authors.
> 参考 Codemini 交互的 DeepSeek Harness Web UI 增强:只负责把所有 Tool Call 展示为紧凑、可展开、可回放的折叠行。 **状态** Preview · **版本** 0.1.1 · **分支** `main` ## ✨ 特性 - 📦 折叠任意 Tool Call,包括第三方插件新增的工具。 - 👀 折叠状态仍显示工具名和有用的参数摘要。 - 🔍 展开查看准确参数、结果、错误和轨迹检查操作。 - 🔄 只从已记录的 call/result block 派生状态,实时展示与会话回放一致。 - 🧠 不增加模型工具、系统提示或请求 token。 ## 🚀 快速开始 ```sh dsh plugin --profile web add github:havingautism/dsh-ultra-ui dsh web ``` ## 🧪 如何验证 打开 DSH Web,让模型调用任意工具,例如读取文件、执行命令或使用第三方插件工具: 1. Tool Call 应默认显示为一行紧凑摘要; 2. 点击或按 Enter/空格可展开参数与结果; 3. 运行中、成功和失败状态应分别显示; 4. 展开后可跳转到轨迹检查对应调用; 5. 重新打开会话时,折叠行内容应与实时展示一致。 ## 🛠️ 工作方式 Harness 的 Tool 树会把每个根调用和子调用送入 `tool.call.presentation`。Ultra UI 占用这个展示层,直接使用会话里已记录的工具名、参数、结果和错误渲染折叠行,不维护业务工具白名单,所以第三方插件新增的 Tool 也使用同一套 UI。 ## 🧪 验证与开发 ```sh npm run verify ``` 本仓库提交了可直接安装的 `lib/`;运行 `npm run verify` 可检查发布产物语法。 ## ⚠️ 已知限制 - Harness 需要提供 single 类型的 `tool.call.presentation` slot;旧版没有该 slot 时插件不会接管展示。 - 一个 Session 中只能有一个插件占用该展示 slot。 - 摘要优先读取 `title`、`question`、`query`、`path` 和 `command` 等常见参数;未知参数回退到已记录 JSON 的开头。
Read the full READMEThe repository declares no license. Check with the authors before using it.
dsh-ultra-ui DSH plugin questions
How do I install dsh-ultra-ui?
Run `dsh plugin --profile web add github:havingautism/dsh-ultra-ui` in your terminal, then start DSH Web with `dsh web`. The plugin will automatically activate when the correct slot is available.
Does this plugin work with any DSH version?
No, it requires a Harness version that provides a single type of 'tool.call.presentation' slot. Older versions without this slot will not be affected. Make sure your DSH is up to date.
Can I use dsh-ultra-ui together with other UI plugins?
Only one plugin can occupy the 'tool.call.presentation' slot in a session. If you have another plugin that also uses this slot, they will conflict. You may need to disable the other plugin or choose one.
Why are some tool parameters not showing a summary?
The summary preferentially reads common parameters like 'title', 'question', 'query', 'path', and 'command'. If a tool uses unknown parameters, the plugin falls back to displaying the beginning of the recorded JSON. You can expand the row to see all details.
Does dsh-ultra-ui support third-party plugin tools?
Yes, it works with any tool, including those from third-party plugins, without requiring a whitelist. All tools that go through the 'tool.call.presentation' slot will be displayed using the same collapsible row UI.