Yaing-Yan/dsh-show-picture0

dsh-show-picture

DSH (DeepSeek Harness) Cordis plugin that lets the agent display images — local files or URLs — directly inside the conversation.

AI 分析

核心用途是赋予模型在聊天气泡中直接渲染图片的能力。适合需要模型生成、处理或查找图片,并直观展示给用户看(支持 PNG/JPG/SVG/GIF 等格式)的交互任务。

パッケージ
dsh-show-picture
バージョン
1.0.0
ライセンス
MIT
最終更新
2026/08/19

インストール

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Yaing-Yan/dsh-show-picture

ドキュメント

README 全文を読む ↗

🛠 Usage / 用法

The agent calls the tool whenever the user asks to see an image:

ArgumentTypeRequiredMeaning
pathstringone ofLocal image file (absolute or workspace-relative). Extensions: png, jpg/jpeg, gif, webp, svg, bmp, ico, avif, tif/tiff. Max 10 MiB.
urlstringone ofhttp(s) URL of the image.
altstringnoShort caption shown under the image.

Result (canonical JSON): { ok: true, kind: 'path'|'url', path|url, size?, mime?, alt } or { ok: false, error }.

A ready-to-use agent skill is included at skill/dsh-show-picture/SKILL.md — drop it into a DSH agent preset's skills/ directory (or follow its instructions manually).