DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Image View — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

@fzhiyu/dsh-image-view

Image View

在所属的工具行内联显示 read_image 调用返回的图像

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add @fzhiyu/dsh-image-view@0.1.1
README兼容性版本

兼容性与来源证明

Image View 以 @fzhiyu/dsh-image-view 发布,当前版本为 0.1.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.1.1stable
2026/8/17
0.1.0stable
2026/8/17

相关插件

正在加载相关插件…

最新版
0.1.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
65.7 kB
文件数
20
Surface
web
许可证
MIT
发布源
npm
周下载
34
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 vision-media 分类下经过校验的插件。

Tool Describe Image@linxin666/dsh-tool-describe-image面向模型的 describe_image 工具,用于 dsh Web GUI:通过在兼容 OpenAI 的端点调用视觉语言模型,为文本模型提供图像理解能力,以描述一张图像(本地路径、http(s) URL 或附件引用)。可热插拔 —Modlens@liustack/modlens面向仅支持文本的 LLM 的插件视觉能力,由免费的 Antigravity CLI 提供支持Vision Toolkit@anionex/dsh-vision-toolkit面向 Harness 原生集成的 DeepSeek 与 agent-vision-toolkit:图像问答、OCR、定位、UI 还原、像素差异、Artifacts 和 Web UI。Deepseek Ivideodeepseek-ivideoiPolloWork HyperFrames Video Studio,以及 27 个可编辑视频模板,以原生 DeepSeek Harness 对话视图呈现。

README

DeepSeek Harness · Image View

When the agent reads an image, show the image.

read_image already returns the picture — the tool commits the bytes through the attachment service and hands the model an image block. The web UI just had nowhere to draw it, so the call rendered as a grey line naming a path, and the one thing you wanted to see was the one thing that was missing.

This plugin gives that call its own row.

What changes

before   read_image · /tmp/sp-sing.png
after    View image · /tmp/sp-sing.png
         [ the image, right there ]

The thumbnail fits a 240px long edge, and clicking it opens the original. Nothing to expand: a row whose only real content is a picture should not make you click to find out what the agent saw.

Everything else is untouched. This registers under one key — read_image — in the Tool UI's keyed view slot, so every other tool row renders exactly as it did before, and removing the plugin restores the generic row on the next boot.

Install

dsh plugin --profile web add @fzhiyu/dsh-image-view
# restart DSH

How it behaves

Call stateRow
RunningSummary line with the shipped running sweep
SucceededSummary line plus the image, loading and retry included
FailedThe failure's first line, in the error colour, and no image
InterruptedMarked stopped rather than failed

A settled result that carries no image block degrades to its summary. The row reports what the call actually returned; it never invents a picture.

What it does not do

  • No Host half. The bytes are already durable session history served by the official session.attachment route. A second path to that data would be a second thing to authorize correctly.
  • No private image stack. Loading, retry, and the lightbox are the official attachment components, resolved from the shell's platform module table — the same instance chat history renders. A tool-result image and a pasted image behave identically because they are the same component.
  • No other tool. One key, claimed deliberately.

Notes

Images are read under the rendering session's own authorization, through the public session verb, and their object URLs are revoked when the plugin unloads — a screenshot pinned for the life of the page is a leak, not a cache.

Targets DeepSeek Harness 0.1.0-rc.6.