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.

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

@try-works/dsh-vision-worker

Vision Worker

DeepSeek Harness plugin: a vision worker over Cloudflare Workers AI (@cf/moonshotai/kimi-k2.6) that routes image requests from text-only callers, returns a versioned righthand.vision.v1 envelope, and supports follow-up questions.

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

npx -y @deepseek-ai/dsh plugin --profile web add @try-works/dsh-vision-worker@0.1.1
READMECompatibilityVersions

Compatibility and provenance

Vision Worker is published as @try-works/dsh-vision-worker and currently resolves to version 0.1.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.1.1stable
8/21/2026
0.1.0stable
8/21/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
165.1 kB
Files
43
Surface
any
License
Apache-2.0
Source
npm
Weekly downloads
33
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.Image Gendsh-image-genBring ChatGPT-like image generation to DeepSeek Harness — Gemini, OpenAI, Seedream, DashScope, local ComfyUI & more.

README

@try-works/dsh-vision-worker

A DeepSeek Harness plugin that gives text-only models real vision.

When a caller cannot see images, dsh-vision-worker routes the image to Cloudflare Workers AI @cf/moonshotai/kimi-k2.6 (vision-capable) and returns a deterministic, versioned envelope — so the text-only caller can act on structured facts instead of guessing from prose.

The problem

  • Text-only models reject image content, so they cannot read a website screenshot, a photo, a chart, or a scanned table.
  • Handing them raw vision prose forces re-parsing and loses structure.

The fix

One call returns a righthand.vision.v1 envelope:

{
  "schema": "righthand.vision.v1",
  "model": "@cf/moonshotai/kimi-k2.6",
  "status": "ok",
  "summary": "...",
  "answer": "...",
  "content": {
    "text": [{"value": "...", "confidence": 0.97, "bbox": [x,y,w,h]}],
    "measurements": [{"name": "...", "value": 12, "unit": "%"}],
    "tables": [{"name": "...", "columns": [...], "rows": [[...]]}],
    "code": [{"language": "...", "text": "..."}],
    "entities": [{"type": "...", "value": "..."}]
  },
  "actions": ["verify the Q3 total against the source table"],
  "confidence": 0.9,
  "warnings": [],
  "images": []
}

Install

dsh plugin --profile <profile> add @try-works/dsh-vision-worker

Or apply the overlay directly:

dsh --profile <profile> --patch ./cordis.patch.yml

Configure

Set one of these transports (the plugin tries workerUrl first, then accountId + apiTokenRef):

# cordis.patch.yml
- insert:
    - id: dsh-vision-worker
      name: '@try-works/dsh-vision-worker'
      config:
        # Deployed worker (see cloud/):
        workerUrl: 'https://vision-worker.<you>.workers.dev'
        # …or Workers AI REST directly:
        # accountId: '<your Cloudflare account id>'
        # apiTokenRef: 'CLOUDFLARE_API_TOKEN'
        # model: '@cf/moonshotai/kimi-k2.6'
        # locale: 'en'

Store the token with the harness credential provider (never inline):

rh_credential_set ref=CLOUDFLARE_API_TOKEN value=<token>

Tools

ToolPurpose
vw_analyzeAnalyze image(s) with a prompt → envelope + callerText
vw_askFollow-up question about the same image(s)
vw_statusReport active transport/model without exposing the token
vw_localeGet/set UI language (en or zh-CN)

Tool names are stable identifiers; descriptions and rendered status text localize live via the locale setting.

Deploy the worker

cd cloud
npx wrangler deploy

cloud/index.js is a zero-build Worker exposing POST /analyze (plus GET /health). It takes { prompt, images, system? } and returns the same righthand.vision.v1 envelope.

Test

pnpm install
pnpm test          # 20 tests: core, schema, transport, tools, fixtures
pnpm typecheck
node --experimental-strip-types test.ts   # inside cloud/ — worker handler test

Routing architecture

The observable Workers AI routing protocol (name→effective-model aliasing, task-family dispatch, result-envelope shapes, gating) is documented in docs/workers-ai-routing-protocol.md, derived from live probes of every cataloged model.

Layout

  • src/core/vision.ts — capability routing, multimodal input, normalization, multi-step (transport injected; zero deps).
  • src/core/schema.ts — the envelope format, prompt template, tolerant parser, and callerText renderer.
  • src/transport.ts — Workers AI REST client + deployed-worker client.
  • src/vision-tools.ts — the DSH-native tool surface (ctx.tools/ ctx.settings/ctx.credentials).
  • src/i18n.ts — EN + zh-CN string tables.
  • src/fixture.ts — deterministic PNG fixtures (real bytes, no deps).
  • cloud/ — deployable Worker.