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.

Plugin Mimo Delegate — DSH Plugin for DeepSeek Harness
← Plugins
P

dsh-plugin-mimo-delegate

Plugin Mimo Delegate

DeepSeek Harness plugin: a sidebar switch plus settings card that turns the local Xiaomi MiMo Desktop delegation pipeline (the mimo-delegate skill) on and off, and creates MiMo projects/sessions whose folder matches a DSH project folder.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Qamar-crypto/DSH-skill#9424d42e82342422ce8a2989a54f541b7a6f9002
READMECompatibilityVersions

Compatibility and provenance

Plugin Mimo Delegate is published as dsh-plugin-mimo-delegate and currently resolves to version 0.1.5. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/18/2026

Versions

0.1.5stable
9/18/2026
0.1.4stable
9/17/2026
0.1.0stable
9/17/2026

Related plugins

Loading related plugins…

Latest
0.1.5
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/19/2026
View source ↗
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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in integrations-communication.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rPocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.

README

dsh-plugin-mimo-delegate

A DeepSeek Harness plugin that puts the local MiMo Desktop delegation pipeline behind a switch you can actually see and click:

  • a compact button in the left sidebar footer, directly above 上下文洞察 (Context insight);
  • a settings card under 设置 → 插件 → 插件配置, showing what the pipeline is, where its pieces live, its live state, and the same switch.

Flipping the switch on/off runs one already-tested script, Set-Delegation.ps1, which parks the mimo-delegate skill outside the skills root and rewrites the rule block in ~/.dsh/AGENTS.md. The plugin deliberately does not reimplement that logic — one implementation means the UI and the command line can never disagree.

Requirements

  • Windows, with DSH Desktop installed.
  • The MiMo delegation pipeline itself: the mimo-delegate skill plus _mimo_bridge\Set-Delegation.ps1. If those live somewhere else, change the toggleScript setting on the plugin's settings card (or in ~/.dsh/settings.yaml).

Install

Via the plugin market (recommended): open 插件市场 → 发现, search for mimo-delegate, install, then restart DSH Desktop. Market installs are managed, so the plugin also shows up under 已安装 where you can disable or uninstall it.

Manually: copy this package into your profile's node_modules and list it in package.json → dsh.profile.bundles:

$profile = "$env:USERPROFILE\.dsh\profiles\desktop"
$target  = "$profile\node_modules\dsh-plugin-mimo-delegate"
Copy-Item <this repo> $target -Recurse -Force
# then add "dsh-plugin-mimo-delegate" to dsh.profile.bundles in $profile\package.json
# and restart DSH Desktop

Safety

A plugin that throws inside apply() aborts the entire DSH boot and drops the app into its recovery screen. An earlier revision of this plugin did exactly that (it assumed ctx.settings.watch existed). Two things now make that class of failure impossible:

  1. apply() cannot throw. Everything runs inside a try/catch; a wrong assumption degrades into a logged warning.
  2. No API is assumed. The change feed is probed in order (ctx.settings.watch → scope.watch → scope.subscribe) and falls back to polling.

preflight.mjs proves it: it stages a copy of this package inside the profile's node_modules (deliberately not listed in dsh.profile.bundles, so DSH can never load it), imports the host half, and calls apply() with six different ctx shapes.

npm run preflight     # or: node preflight.mjs
npm run check         # syntax + preflight

Expected tail:

ok    register + get, NO watch anywhere  <-- the shape that once killed DSH boot
...
PREFLIGHT PASS

Development notes

  • lib/index.js — host half (plain Cordis plugin, ESM, no build step).
  • lib/client.js — browser half, a hand-written lazy-CJS factory registered on window.__ModuleLoader__. No bundler is required; it only requires react and react/jsx-runtime.
  • cordis.patch.yml — the bundle patch that inserts the host row.

License

MIT