AI Agent Hub
Back to plugins
dsh-win-toolkit preview

dsh-win-toolkit

Client Updated 2026.08.30

Run the following command in DeepSeek Harness:

dsh plugin install Edge-Echo/dsh-win-toolkit

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

Run dsh plugin install Edge-Echo/dsh-win-toolkit in your terminal to install the plugin; the source is available at https://github.com/Edge-Echo/dsh-win-toolkit .

About this plugin

A DeepSeek Harness agent is, at its core, a headless text engine. Ask it to paste some text into your clipboard, pop a system notification, peek at your hosts file, or verify whether a host on port 443 is actually reachable, and it has no way to do any of that on Windows. dsh-win-toolkit closes exactly that gap: five ready-to-use tools that give your dsh agent genuine Windows-native capabilities without requiring a Python runtime, a batch script collection, or a single extra install.

The security model is the detail worth highlighting. Every tool is backed by a short, readable PowerShell snippet executed via powershell.exe -NoProfile -NonInteractive. All user-supplied values are Base64-encoded before crossing the script boundary and only decoded inside the script, making argument injection structurally impossible. The current toolset runs under standard user privileges and does not demand the RemoteSigned execution policy, so there is zero ceremony between installing the plugin and using it.

If you are running a dsh agent on a Windows machine and want it to interact with the desktop environment — reading and writing the clipboard, dispatching toast notifications, inspecting hosts entries, or running quick network diagnostics — this is the plugin you are looking for. It is lightweight, dependency-free, and fails loudly on non-Windows platforms instead of silently no-opping, so you always know exactly what is happening.

Screenshots

Use Cases

  • Have your dsh agent read or write the clipboard instead of manual copy-paste
  • Get a desktop toast notification when a long-running agent task finishes
  • Diagnose DNS resolution and TCP port reachability without leaving the chat window

Best For

  • Developers running a dsh agent on Windows who want desktop-level capabilities
  • Ops and debugging engineers who need hosts inspection or quick network checks from the agent
  • Lightweight users who want system tools with zero extra dependencies and instant setup