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.

Webui Studio — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
W

dsh-webui-studio

Webui Studio

Harmony WebUI Studio with a live DSH preview and an in-host assistant session

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

npx -y @deepseek-ai/dsh plugin --profile web add github:memorax-ai/dsh-webui-studio#e164c600931af315a3da2ea780949e2f9e2fdbb6
READMECompatibilityVersions

Compatibility and provenance

Webui Studio is published as dsh-webui-studio and currently resolves to version 0.3.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/19/2026

Versions

0.3.0stable
9/19/2026
0.2.1stable
8/28/2026
0.2.0stable
8/25/2026
Show 1 more versionCollapse versions
0.1.0stable
8/21/2026

Related plugins

Loading related plugins…

Latest
0.3.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 3
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

Related plugins

More verified plugins in ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote 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.

README

Harmony

DeepSeek WebUI Studio

A visual-first studio for building DSH WebUI plugins.
Inspect the real interface, edit source, run builds, and validate patches without loading unfinished code into your stable DSH Host.
Powered by dsh-harmony.

Get started · Report a bug · Request a feature

Powered by Harmony

简体中文 / English

A visual workspace for the real DSH WebUI

WebUI Studio is not a mock page builder. It runs against the official DSH WebUI and its real plugin graph, then turns visual inspection and source edits into distributable plugin-owned artifacts.

Studio is an independent downstream application of dsh-harmony. It uses Harmony's public runtime, Patch engine, service API, and CLI control surface together with the generic React registration API from dsh-harmony-react. The dependency direction stays one-way: Studio depends on Harmony; Harmony does not depend on Studio.

What you can do

  • Create a minimal DSH Web Client plugin or import an existing local plugin folder
  • Give every Draft its own Git worktree, DSH_HOME, profile, dependencies, and child Host
  • Preview the official WebUI without loading Draft code into the stable Host
  • Browse normally or inspect DOM, React owners, source candidates, and Patch traces
  • Surface plugin-registered Element controls automatically; save defaults and subtree-scoped CSS back to Draft source
  • Review Component declaration matches and generate CSS decorators without changing existing call-site props
  • Reorder and toggle both Harmony providers and individual Patches through one transactional reload
  • Edit Draft source with CodeMirror and protect installed dependency sources as read-only
  • Build, apply through Harmony, reload, and confirm the live Client graph revision
  • Start a Draft-scoped Agent or continue an existing DSH session with temporary Studio tools, skill, and context
  • Let an external Agent inspect the running WebUI through a local read-only Streamable HTTP MCP endpoint
  • Answer one-shot tool approvals, structured questions, and plan reviews without leaving Studio
  • Check package exports, artifacts, Patch state, ordering, dependencies, and pack output
  • Run multiple isolated Draft Preview Hosts at the same time
  • Snapshot the current WebUI profile or another local profile into each isolated Draft runtime
  • Reorder plugins and enable or disable Harmony Providers through one transactional hot reload

How it works

flowchart LR
  A["Stable DSH Host"] --> B["WebUI Studio"]
  B --> C["Draft worktree"]
  B --> D["Draft worktree"]
  C --> E["Isolated DSH Home + Preview Host"]
  D --> F["Isolated DSH Home + Preview Host"]
  E --> G["Harmony runtime + real WebUI"]
  F --> G

The stable Host owns the Studio interface, Draft registry, and Agent sessions. Each Draft owns an isolated worktree and child Preview Host. A build becomes active only after the Preview confirms the new live Client graph revision. Stopping a Draft terminates its child Host but preserves its files and state. An existing ordinary DSH session can enter Studio mode without losing its history or identity. Leaving Studio removes the scoped Draft tools, skill, and context so the session resumes through its ordinary DSH composition.

Studio is served locally at:

http://127.0.0.1:<dsh-port>/studio

External Agents can connect to the running instance through MCP at:

http://127.0.0.1:<dsh-port>/studio/mcp

A typical MCP client entry is:

{
  "mcpServers": {
    "dsh-webui-studio": {
      "type": "http",
      "url": "http://127.0.0.1:<dsh-port>/studio/mcp"
    }
  }
}

Add that URL as a Streamable HTTP MCP server in the external Agent. It exposes studio_get_context, studio_get_selection, studio_get_harmony_profile, studio_inspect_harmony_target, studio_read_dependency_source, and studio_preview_status. These tools inspect the current Host only; the external Agent remains responsible for editing and building its own WebUI project. Harmony profile, Patch, and dependency-source inspection work directly from the Host. DOM selection is available while Studio is open and an element is selected in the current-instance Preview. The endpoint follows Studio's existing loopback-only boundary, including access through an SSH loopback tunnel.

Its managed data lives under $DSH_HOME/studio/:

studio/
├── workspace.json
├── drafts/<draft-id>.json
├── repositories/<draft-id>/
├── worktrees/<draft-id>/
└── runtimes/<draft-id>/dsh-home/profiles/web/

Creating a new plugin initializes and commits a minimal DSH Web Client package. New plugins stay inside Studio by default. Creation can optionally record an absolute destination for a new or empty local folder; Studio does not create or modify that folder until Save plugin to folder is used from the instance panel. Later saves synchronize the Studio-owned project snapshot while leaving destination-only files such as node_modules untouched. Importing an existing plugin accepts an absolute local folder after validating its Web Client manifest, then copies an isolated snapshot without .git or node_modules into a Studio-owned Git repository. Symbolic links are rejected, and the original folder is never modified.

Each Draft can start from the stable Host's current web profile or from another local DSH profile selected by absolute folder path. Studio copies that profile's manifest and configuration into the isolated runtime and resolves relative link: dependencies against the selected source folder. The source profile remains untouched.

Draft display names are independent from npm package identities and can be renamed in the instance panel. Studio persists the ordered open tabs and active Draft in workspace.json; closing a tab only removes it from the current workspace and never stops or deletes the Draft. Unsaved Source changes must be saved with Ctrl+S or Command+S before switching or closing tabs.

Getting started

[!IMPORTANT] Studio requires the public Harmony service and CLI APIs documented in docs/harmony-api-requirements.md. dsh-harmony@0.8.7 is the minimum compatible release.

dsh plugin --profile web add dsh-webui-studio
dsh web

Studio includes Harmony as a transitive dependency. On the first visit to /studio, approve Install Harmony and restart; the page installs the launcher and returns to Studio after the local DSH process restarts. No second package command is required. An existing Harmony launcher skips this setup.

To develop Studio itself from source:

git clone https://github.com/memorax-ai/dsh-webui-studio.git
cd dsh-webui-studio
npm install
npm run check

dsh plugin --profile web add link:$(pwd)
dsh web

To exercise the same single-package installation path as a release artifact:

studio_tarball="$(npm pack --silent --ignore-scripts)"
dsh plugin --profile web add "file:$(pwd)/${studio_tarball}"

Open the Studio URL printed by the local dsh web process, create or import a Draft, and start its Preview Host.

A Draft package must:

  • declare dsh.client.platform: "web";
  • export ., ./client, and ./package.json;
  • define a non-empty scripts.build command.

Development

CommandPurpose
npm run typecheckCheck the Host, browser app, and Preview bridge
npm testRun the unit and component test suite
npm run buildBuild the Host, Studio UI, and Preview bridge
npm run checkRun typecheck, tests, build, and packed fresh-install integration
npm run test:integrationPack and install the tarball in a fresh DSH home, then exercise Host, Draft, Preview, build, activation, and shutdown end to end

For isolated Agent environments on a remote Docker host, see docs/remote-development.md.

The integration test requires a Harmony build that exposes the APIs described in the compatibility note above.

Design boundaries

  • The official WebUI keeps its own-origin /api and WebSockets; Studio does not proxy them.
  • The Preview bridge requires the exact parent origin and a per-start capability.
  • Preview DOM, React, source, Patch, and comment data is treated as untrusted evidence.
  • Source writes stay inside the selected Draft package and never follow symbolic links outside it.
  • Registered element boundaries and Patch traces are candidate evidence, not claims of exact DOM ownership.
  • Element controls change the live Preview through plugin bindings. Save to plugin source updates declared default initializers and generated subtree-scoped CSS inside the Draft worktree; it never rewrites component use sites or freezes the runtime binding.
  • Automatic CSS Patch creation uses a Harmony React Component decorator. Studio shows every matching declaration before writing, adds an immediately available Draft client export, and leaves all existing JSX calls and Props intact.

Frequently asked questions

How is Studio different from other WYSIWYG tools?

DSH WebUI changes are delivered through plugins rather than direct edits to the upstream source. Its interface elements also participate in Cordis plugin lifecycle and control logic, so the problem extends beyond manipulating static DOM and CSS. Those constraints call for a dedicated toolkit that understands the DSH plugin system from preview through distribution.

Why not simply ask an Agent to edit the source?

Studio still connects to the real Agent inside DSH. It gives that Agent richer project context, integrated previews, purpose-built tools and skills, and a tighter edit-build-inspect-validate loop. Studio does not replace the Agent; it turns source editing into a more capable interactive workflow for both the Agent and the developer.

What is Harmony, and why use it?

The DSH WebUI exposes many useful slots, but Studio aims for deeper and more flexible changes—including UI and behavior introduced by other plugins—while keeping independently authored modifications as compatible as possible. dsh-harmony provides the runtime patching and runtime model that makes this possible.

Related projects

  • dsh-harmony - runtime patching, transactional plugin reloads, and Patch inspection
  • dsh-harmony-react - React-aware Patch factories and Studio element/variable registration

License

Distributed under the MIT License.

Compatibility work in progress

This branch targets DSH 0.1.5-rc.2 and 0.1.6-alpha.2 with the native Session Controller and Binding Gateway events. It requires the pending Binding 0.1.8 and Harmony 0.8.12 releases; published Binding 0.1.7 does not contain these APIs. Publish Harmony and Binding first, then refresh this package lock from the registry before releasing Studio.

The adapter follows per-Session journals and assistant streams, reconstructs the active prefix after reconnecting, and returns native approval/question results. Preview Hosts retain the authenticated launch URL and use an exchanged cookie for their backend connection. The Harmony installer startup fix must also ship before validating fresh installations.

npm run test:gateway -- <upstream-install-root> <harmony-lib/bin.js> exercises Studio RPC, Session snapshots, projections, history, model catalog and journal delivery against an isolated real Host. The Windows rc package/Preview integration test also passes. Browser interaction and cross-platform checks remain separate release gates.