ruby1304/dsh-vision-subagent ↗★ 0
dsh-vision-subagent
Vision for text-only DeepSeek Harness agents: delegate image reading to a one-shot subagent on a configurable vision route (MiniMax / Kimi / any OpenAI-compatible provider), keeping image bytes and the vision model's context out of the main session.
AI 분석
核心用途是将图像读取任务委托给单次运行的视觉子代理,从而让纯文本模型间接获得视觉能力,并保持主会话整洁。适合需要处理本地图片但主模型不支持视觉的场景。
설치
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:ruby1304/dsh-vision-subagentConfiguration
| Field | Default | Meaning |
|---|---|---|
| enabled | true | Master switch |
| provider / model | '' (dormant) | Vision route; must be set together |
| subagentProvider | spawn | ctx.subagents provider |
| maxDepth | 0 | Child delegation cap (0 = none) |
| maxImages | 4 | Images per call |
| maxImageBytes | 10 MiB | Per-image byte cap |
| maxPromptChars | 8000 | Question length cap |
| maxOutputChars | 32000 | Returned text truncation |
| allowRemoteUrls | false | Reserved (v0.1 supports local paths only) |
| allowOutsideWorkspace | false | Workspace containment bypass |
| extraAllowedRoots | [] | Extra allowed image roots |
| guidance | '' | Extra instructions appended to the child prompt |