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.

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

dsh-side-panel

Side Panel

Right-side developer panel for DeepSeek Harness: files, session history, and git version control

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-side-panel@1.0.0
READMECompatibilityVersions

Compatibility and provenance

Side Panel is published as dsh-side-panel and currently resolves to version 1.0.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
9/20/2026

Versions

1.0.0stable
8/13/2026

Related plugins

Loading related plugins…

Latest
1.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
37.6 kB
Files
6
Surface
web
License
MIT
Source
npm
GitHub
★ 2
Weekly downloads
70
Last push
8/13/2026
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 developer-tools.

Better Sidebardsh-better-sidebarDSH web plugin: a VSCode-like right sidebar (explorer / editor / terminal / git / browser), isolated per conversation session. Exposes a service for other plugins to register sidebar tabs and file viewers.Find Plugindsh-find-pluginFind DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Plugindsh-pluginA community plugin marketplace for DeepSeek Harness, built to the official plugin spec — browse, search and install 9000+ human-curated community plugins without leaving the app. · DeepSeek Harness 社区插件市场(遵循官方开发规范):9000+ 人工精选社区插件,每日更新。

README

dsh-side-panel

A right-side developer panel for the DeepSeek Harness web UI (dsh web). It adds a collapsible side panel with three tabs:

  • Files — browse the current session's working directory; click a text/code file to preview it in a popup (unsupported formats show a message).
  • History — list the current conversation (user messages + assistant replies); click an entry to scroll the chat to it.
  • VCS — show git status for the current directory as M / A / D / U / R badges; click a changed file to view its diff.

Requirements

  • A DeepSeek Harness deployment with the web profile (dsh web).
  • git on PATH (for the VCS tab).

Installation

The plugin is distributed as a DeepSeek Harness bundle. Its bundle patch registers both the Node half (filesystem + git primitives) and the browser half (the UI), so no files or patch rows need to be copied manually.

Install from GitHub

Install it directly into the web profile:

dsh plugin --profile web add github:XYZ1024-alt/dsh-side-panel

This repository commits its ready-to-run JavaScript, so installation does not run a build script and does not require pnpm build authorization.

For a reproducible installation, pin a trusted commit:

dsh plugin --profile web add github:XYZ1024-alt/dsh-side-panel#<commit-sha>

Restart dsh web after installation and refresh the page. The panel appears on the right edge.

Install from npm

After the package is published to npm:

dsh plugin --profile web add dsh-side-panel

Install a local checkout

From the parent directory of this repository:

dsh plugin --profile web add ./dsh-side-panel

Verify

Inspect the composed profile before starting the web UI:

dsh --profile web --dump-config

The output should contain a # == dsh-side-panel bundle layer and the dsh-side-panel plugin row.

Uninstall

dsh plugin --profile web remove dsh-side-panel

Usage

Open the panel from the right edge of the web UI and switch between the three tabs. Click a file or a changed path to open a popup; close it with the × button or by clicking the blank area outside.

Security

The /dev-panel/* routes read the filesystem and run git without their own authentication or sandboxing. The panel is intended for local / loopback use (dsh web binds 127.0.0.1 by default). Do not expose the server to a network you do not trust.

License

MIT