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.

Client Ui Mobile — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-client-ui-mobile

Client Ui Mobile

Mobile layout enhancement for the dsh web UI: narrow-screen CSS and a floating navigation toggle, reusing the built-in layout slots

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-client-ui-mobile@0.1.9
READMECompatibilityVersions

Compatibility and provenance

Client Ui Mobile is published as dsh-client-ui-mobile and currently resolves to version 0.1.9. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/20/2026

Versions

0.1.9stable
8/18/2026
0.1.8stable
8/18/2026
0.1.7stable
8/18/2026
Show 7 more versionsCollapse versions
0.1.6stable
8/18/2026
0.1.5stable
8/18/2026
0.1.4stable
8/18/2026
0.1.3stable
8/18/2026
0.1.2stable
8/18/2026
0.1.1stable
8/17/2026
0.1.0stable
8/17/2026

Related plugins

Loading related plugins…

Latest
0.1.9
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
55.2 kB
Files
8
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
105
Security scan
✓ v0.1.9 scan passed
View source ↗Project homepage ↗
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 pluginsClient 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.Pet@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-client-ui-mobile

A mobile layout enhancement plugin for the DeepSeek Harness dsh web UI.

This is an additive plugin: it does not replace the built-in layout. It only applies mobile / narrow-screen (≤768px) adaptations while leaving desktop completely untouched.

中文版说明见 README.zh.md

Features

  • Hide the 56px sidebar rail on phones; the conversation area becomes full-width.
  • Floating navigation toggle (44×44 touch target) that opens the built-in sidebar as a phone drawer.
  • Overlay backdrop only covers the area outside the drawer, so drawer controls stay tappable.
  • Top-right actions menu consolidating the hidden session-log button and the chat / trajectory view tabs.
  • Full-screen mobile settings panel with a horizontal navigation strip.
  • Tool-call rows optimized for phones: taller rows, wrapping summaries, stacked IN/OUT, visible Inspect control.
  • Question composer (question popup) safe handling for very long titles: title area has its own internal scroll, options stay visible and never overlap the title.
  • Message time rows are trimmed to time · duration and ellipsized to avoid overflow on narrow screens.
  • Selecting a session or tapping “New session” in the phone drawer automatically closes the drawer so the composer/content is not covered.
  • Extended touch targets (≥44×44) for primary controls.
  • Desktop is completely unaffected.

Requirements

  • dsh web (Harness 0.1 series)
  • Depends on the built-in @deepseek-ai/dsh-client-runtime and @deepseek-ai/dsh-client-ui-layout services (ctx.layout and the shell.overlay slot). These ship with dsh web; no separate install needed.

Installation

This package declares a dsh.bundle, so it is mounted as a profile layer automatically by dsh plugin add.

Option 1: npm (recommended)

# From npm
dsh plugin --profile web add dsh-client-ui-mobile

Option 2: GitHub

dsh plugin --profile web add github:GithungDang/dsh-client-ui-mobile#v0.1.0

Option 3: local directory / tarball

dsh plugin --profile web add ./dsh-client-ui-mobile
dsh plugin --profile web add ./dsh-client-ui-mobile-0.1.0.tgz

After installation, restart dsh web and open http://127.0.0.1:13080 to see the floating navigation toggle.

Manual patch

Append cordis.patch.yml to your profile’s cordis.patch.yml (or use dsh web --patch ./cordis.patch.yml) and make sure the package is resolvable by the loader (e.g. symlinked into $DSH_HOME/profiles/node_modules/).

Development

pnpm install      # first run; prepare builds automatically
pnpm build        # tsdown → lib/index.js + lib/client.js
pnpm typecheck    # tsc --noEmit

Development loop: edit src/ → pnpm build → refresh the browser page. dsh web development mode has HMR, so bundle changes are pushed automatically; no server restart needed.

How it works

  • Browser half (src/client/index.ts) registers a floating navigation toggle in the shell.overlay slot and reuses the built-in ctx.layout.toggleSidebar().
  • Styles (src/client/MobileNavButton.module.css) are driven by the data-mobile-nav attribute: on phones the built-in sidebar becomes a fixed drawer, the rail is hidden, and settings / tool rows / question popups are adapted.
  • Node half (src/index.ts) is empty; it only makes the package loadable by the dsh loader.
  • All side effects (slot registration, event listeners, MutationObserver, matchMedia) are attached to ctx.effect() disposers and cleaned up on unload.

Build output follows the dsh web client-plugin contract: lib/client.js is a CJS closure-factory for window.__ModuleLoader__.load({ id, factory }), and CSS Modules are inlined by lightningcss into a <style data-plugin> tag.

Known limitations

  • Styles rely on built-in CSS Module class suffixes (e.g. [class$="_frame"], [class$="_sidebarCol"]). If upstream changes its class-name strategy, this plugin needs to be updated.
  • Background scrolling is not locked while the drawer is open.
  • Transitions are intentionally kept minimal.

License

MIT