Yaing-Yan/dsh-show-picture ↗★ 0
dsh-show-picture
DSH (DeepSeek Harness) Cordis plugin that lets the agent display images — local files or URLs — directly inside the conversation.
安装
$
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:
| Argument | Type | Required | Meaning |
|---|---|---|---|
path | string | one of | Local image file (absolute or workspace-relative). Extensions: png, jpg/jpeg, gif, webp, svg, bmp, ico, avif, tif/tiff. Max 10 MiB. |
url | string | one of | http(s) URL of the image. |
alt | string | no | Short 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).