AI Agent Hub
Back to plugins
🖥️

dsh-vimina

Client Updated 2026.08.22

Run the following command in DeepSeek Harness:

dsh plugin install Sunse666/dsh-vimina

Paste the following prompt into your AI chat to install this plugin:

Install the plugin in DeepSeek Harness by running dsh plugin install Sunse666/dsh-vimina; the source repository is available at https://github.com/Sunse666/dsh-vimina

About this plugin

Driving Windows GUI from DSH has traditionally relied on screenshot-plus-OCR loops that are slow, brittle, and costly in vision tokens. dsh-vimina plugs Vimina's UIA text-scanning engine directly into DSH's native tool layer, letting the model read control names and coordinates as structured text and then perform clicks, typing, scrolling, and more without invoking any vision model. A single scan call returns the full control tree with human-readable labels, making the loop far faster and cheaper than repeated screenshot-and-read cycles.

The plugin exposes 26 tools spanning window listing, control scanning and lookup, coordinate and label-based clicking, mouse drag, keyboard combinations, a full VMA scripting engine (pause, resume, log), and region screenshots. Under the hood it drives a standalone Vimina.exe service (.NET 8) over stdio JSON-RPC; the child process is started lazily on first use and torn down automatically when the plugin unloads, requiring no extra ports or auth tokens.

It is ideal for DSH profile authors on Windows who need to automate desktop applications, drive Chromium browser pages, or batch-run VMA scripts, and especially for setups where per-interaction screenshot token cost is a real concern.

Use Cases

  • Automate desktop apps by filling forms and clicking buttons
  • Drive Chromium browser pages without screenshot-OCR loops
  • Batch-run VMA scripts for multi-step GUI workflows with pause and resume

Best For

  • DSH profile authors working on Windows
  • Developers replacing vision models with structured GUI automation
  • Automation engineers focused on latency and token cost