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.

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

dsh-lego-plugin

Lego Plugin

Lego-style visualization of dynamic Cordis plugins in the DSH Web GUI — replaces the native Cordis Plugin panel with hot plug/unplug bricks, 4 themes, i18n, pure CSS. 乐高式 DSH 动态插件可视化:将左下角原生 Cordis 插件面板乐高化,支持热插拔启停、4 套主题、中英文,纯 CSS 渲染。

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-lego-plugin@0.2.0
READMECompatibilityVersions
Cordis Plugin panel rendered as Lego bricks

Compatibility and provenance

Lego Plugin is published as dsh-lego-plugin and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
8/30/2026

Versions

0.2.0stable
8/30/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
57.5 kB
Files
11
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
9/6/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

Related plugins

More verified plugins in ui-customization.

Remote 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 rClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Client Ui Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundlePet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

README

dsh-lego-plugin

dsh-lego-plugin banner

Lego-style visualization of dynamic Cordis plugins in the DeepSeek Harness (DSH) Web GUI.

This plugin replaces the native "Cordis Plugin" panel at the bottom-left sidebar with a Lego-brick view of the plugins the current session is running (dyn/*). Every plugin is a brick rendered with pure CSS — no external libraries, no WebGL — and each brick keeps the full lifecycle controls of the native panel: run, stop, remove, approve, decline. Hot plug/unplug is the point of the plugin, not just a pretty list.

Trademark notice. This project is not affiliated with, endorsed by, or connected to the LEGO Group. "LEGO" is a trademark of the LEGO Group. The brick-style appearance is a visual metaphor only.

Scope. This plugin manages dynamic Cordis plugins (dyn/*, the ones created through cordis_define). Static Loader plugins from cordis.yml are not listed — hot plug/unplug exists only for dynamic plugins.

Features

  • Replaces the native Cordis Plugin panel — same entry position and label ("Cordis Plugin"), same data and lifecycle verbs, Lego-brick presentation.
  • Hot plug/unplug — click a brick: Run / Stop / Remove for running or stopped plugins, Approve / Approve (future versions) / Decline while a run is awaiting approval. State refreshes live as plugins start and stop.
  • Lego bricks — plastic-look 3D bricks with glossy studs (highlight + drop shadow); running plugins render solid with a green status dot, stopped ones greyed out, awaiting-approval ones outlined in red.
  • 4 themes — Classic red, Ocean blue, Forest green, Amber (switchable in the panel header).
  • Search — filter bricks by plugin id.
  • Running count — the sidebar entry shows how many plugins are running.
  • i18n — follows the GUI locale (中文 / English).
  • Light/dark — colors come from --dsw-alias-* theme tokens.

Style reference

The brick and stud styling follows the classic pure-CSS Lego block recipe:

  • rembertdesigns/CSS-Lego-Block — the glossy stud highlight + drop-shadow recipe this project builds on.
  • 纯 CSS 创作一块乐高积木 — a walkthrough of the same technique.

The stud/brick visuals are original code in this repository, informed by those references; no code is copied verbatim.

Screenshot

Cordis Plugin panel rendered as Lego bricks

Install

Requires a DeepSeek Harness installation with the Web GUI.

dsh plugin --profile web add dsh-lego-plugin

--profile is required and names your run configuration. Use web if you start the GUI with dsh web (the most common case), headless for the CLI, or any other name — a missing profile is created automatically.

Or install directly from GitHub:

dsh plugin --profile web add github:XIAOke8698/dsh-lego-plugin

Git installs build from source automatically; pnpm may ask you to allow the package's build script, then re-run the add command.

Usage

Click Cordis Plugin at the bottom-left of the sidebar. The panel opens with one Lego brick per dynamic plugin. Click a brick to see its actions:

Brick stateAvailable actions
Running (solid + green dot)Stop, Remove
Stopped (greyed out)Run, Remove
Awaiting approval (red outline)Approve, Approve (future versions), Decline

Uninstalling

Remove the bundle from your profile to restore the native Cordis Plugin panel:

dsh plugin --profile web remove dsh-lego-plugin

Removal is clean and complete:

  • The browser half unloads, which restores the native Cordis Plugin panel — nothing about this plugin persists in the page after it stops.
  • The stylesheet this plugin injected is removed on unload; no global styles are left behind.
  • The cordis.patch.yml layer is removed from the profile, so the package is no longer mounted at the next dsh web start.

You can also stop just the visual replacement without uninstalling: because the panel is a dynamic plugin itself, stop it from the Cordis panel (dyn/… brick → Stop) or with cordis_stop, and the native panel returns immediately.

Development

src/
  index.js          host half (Loader entry)
  client/index.js   browser half — the whole feature
scripts/
  build-client.mjs  zero-dependency build (Node only)
node scripts/build-client.mjs
node --check lib/client.js

License

MIT