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.

Settings Nav Fold — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-settings-nav-fold

Settings Nav Fold

Fold plugin/extension settings entries in the DSH settings panel into one collapsible "Plugin entries" group row — one click to expand or collapse, auto-updating as plugins come and go.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-settings-nav-fold@1.0.1
READMECompatibilityVersions

Compatibility and provenance

Settings Nav Fold is published as dsh-settings-nav-fold and currently resolves to version 1.0.1. 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

1.0.1stable
8/16/2026
1.0.0stable
8/16/2026

Related plugins

Loading related plugins…

Latest
1.0.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
13.8 kB
Files
9
Surface
web
License
MIT
Source
npm
Weekly downloads
30
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-settings-nav-fold

English | 中文

Declutter the DeepSeek Harness settings panel: with more plugins installed, the settings sidebar grows one entry per plugin. This plugin folds every plugin/extension entry into a single collapsible Plugin entries group row, placed right below the system settings, with a dropdown arrow — one click to expand or collapse.

Features

  • One group row, right under the system settings — 通用设置 / Models / Plugins / Agent presets stay flat; everything else (plugins, extensions, extra pages) folds under Plugin entries (N) ▾.
  • One-click expand/collapse — click the group row to unfold all plugin entries below it; click again to fold them back.
  • Auto-updating — the count and the fold positions are recomputed from the live settings.section ledger, so entries appear/disappear as plugins register or unregister their settings pages. No configuration.
  • Current section never disappears — the active plugin page stays visible even while folded.
  • Localized — follows the UI locale (中文 / English).
  • Zero host code — pure browser-side plugin; nothing runs on the host process.

Install

dsh plugin --profile web add github:zhengjy01/dsh-settings-nav-fold

Restart dsh, open the Settings panel (gear icon at the sidebar foot), and the nav now shows the core entries plus the Plugin entries (N) ▾ group row.

How it works

The settings nav list is rendered by the shipped panel and is not a slot, so the plugin:

  1. reads the settings.section slot ledger (ctx.slots.entries) and sorts it exactly like the panel does;
  2. injects the group row into the nav list DOM right after the last core entry (idempotent — no DOM change when already placed);
  3. marks plugin buttons with data-snav-plugin and the list with data-snav-folded, and hides them via a small stylesheet (the active aria-current row stays visible);
  4. follows the ledger and panel re-renders with a MutationObserver, so the group stays correct as plugins come and go.

Everything is owned by the plugin fiber: styles, subscriptions, the observer, and the injected row are removed when the plugin is stopped or uninstalled.

Uninstall

Remove the plugin from the profile and delete the line(s) it added to cordis.patch.yml:

dsh plugin --profile web remove dsh-settings-nav-fold

License

MIT