DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Local Vision — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-local-vision

Local Vision

DeepSeek Harness plugin: a model-callable local_vision tool that describes images with a local vision model through Ollama. No cloud, the image never leaves the machine. Two tiers: fast (text/colors/summary) and detailed (full description).

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add dsh-local-vision@0.2.1
READMECompatibilityVersions

Compatibility and provenance

Local Vision is published as dsh-local-vision and currently resolves to version 0.2.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.2.1stable
8/14/2026
0.2.0stable
8/14/2026

Related plugins

Loading related plugins…

Latest
0.2.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
11.5 kB
Files
5
Surface
any
License
MIT
Source
npm
GitHub
★ 1
Weekly downloads
39
Last push
8/15/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in vision-media.

Tool Describe Image@linxin666/dsh-tool-describe-imageModel-facing describe_image tool for the dsh web GUI: gives a text-only model image understanding by asking a vision-language model at an OpenAI-compatible endpoint to describe one image (local path, http(s) URL, or attachment reference). Hot-pluggable — Modlens@liustack/modlensPlug-in vision for text-only LLMs, powered by the free Antigravity CLIDeepseek Ivideodeepseek-ivideoiPolloWork HyperFrames Video Studio and 27 editable video templates as a native DeepSeek Harness conversation view.Imagegen@dickpy/dsh-imagegenAI image generation plugin for the dsh web GUI: text-to-image and image-to-image through configurable provider channels (gpt-image-2 / grok-imagine-image / nanobanana series / seedream-5.0-pro / dall-e-3, with native xAI Grok Imagine, Google Nano Banana a

README

dsh-local-vision

Give a text-only DeepSeek Harness agent local "eyes". This plugin registers a model-callable local_vision tool that describes an image using a local vision model through Ollama. The image never leaves your machine — no cloud, no uploads, no API keys.

Requirements

  • Ollama running (default http://localhost:11434).

  • At least one vision-capable model pulled, e.g.:

    ollama pull qwen2.5vl:3b        # small, fast — text / colors / summary
    ollama pull gemma4:12b-it-qat   # larger — thorough description
    

Install

# from npm (recommended)
npm install -g @deepseek-ai/dsh
dsh plugin --profile web add dsh-local-vision

# or from this repository (use `file:` so @deepseek-ai/dsh-tools resolves)
dsh plugin --profile web add file:/path/to/deepseek-harness-plugins/dsh-local-vision

Restart the DSH session so the new bundle is composed. The package then appears in Settings → Plugins → Plugin list and the tool local_vision is available.

Usage

local_vision(image: "/abs/path/screenshot.png", mode: "fast")
local_vision(image: "/abs/path/mockup.png", mode: "detailed", prompt: "Describe the navigation and buttons")
local_vision(image: "screen", mode: "detailed")   # capture the current display (macOS screencapture)

Modes

modeintentdefault model
fasttranscribe visible text, name dominant colors, one-line summaryqwen2.5vl:3b
detailedfull factual description: layout, UI elements, all text, colors, stategemma4:12b-it-qat

Parameters

ParamTypeNotes
imagestring (required)Absolute path to a PNG/JPEG/WebP/GIF, or the literal screen.
mode"fast" | "detailed"Defaults to fast.
promptstringOptional focused question. Defaults per mode.
modelstringOptional override of the Ollama model id for this call.

Configuration

Optional, at $DSH_HOME/local-vision.json (default ~/.dsh/local-vision.json):

{
  "host": "http://localhost:11434",
  "models": { "fast": "qwen2.5vl:3b", "detailed": "gemma4:12b-it-qat" },
  "temperature": 0.1,
  "timeoutMs": 300000
}

All keys are optional; defaults are shown above. The plugin sends the image to Ollama's OpenAI-compatible /v1/chat/completions endpoint as a base64 data URI.

Notes & limitations

  • The first call after the model is cold loads it into memory (a 7 GB model takes a while); subsequent calls are fast.
  • image: "screen" requires macOS and Screen Recording permission for the terminal.
  • The tool calls Ollama directly (not through the DSH sandbox executor).

License

MIT