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.

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

dsh-file-manager

File Manager

File Manager for DeepSeek Harness: right-side resizable file tree (expand/collapse, recursive filename search, per-type preview for markdown/html/pdf/image/video/audio/code, in-panel edit) with right-click context menu (preview / edit / copy path / downlo

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-file-manager@0.1.3
READMECompatibilityVersions

Compatibility and provenance

File Manager is published as dsh-file-manager and currently resolves to version 0.1.3. 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.3stable
8/16/2026
0.1.1stable
8/16/2026
0.1.0stable
8/16/2026

Related plugins

Loading related plugins…

Latest
0.1.3
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
134.7 kB
Files
7
Surface
web
License
MIT
Source
npm
GitHub
★ 1
Weekly downloads
69
Last push
8/16/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 productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseClient 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.Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness: multi-agent team collaboration (captain, members, tasks with dependencies, messaging) driven by natural language, with a tree monitor in the web GUI

README

dsh-file-manager

A File Manager for DeepSeek Harness. Adds a resizable file/folder panel on the right side of the page with recursive filename search, per-type preview, inline editing, and a full right-click context menu for files and folders.

Docs in other languages: Tiếng Việt

Highlights

  • Dual-face plugin — works as both a DSH host plugin and a web client. Installable via dsh plugin add with no repo edits and no changes to closed RPCs.
    • Host half registers the /plugins/file-manager/* routes on ctx.webServer.
    • Client half fetches those routes directly (same origin).
  • File tree on the right side — lazy-load expand/collapse per folder, directories before files, size shown, sortable (Name / Type / Size / Modified).
  • Recursive filename search across the whole workspace (skips .git, node_modules, dist, .dsh; caps results).
  • Right-click context menu on any file/folder.
  • Per-type preview — renders each file the right way:
    • Markdown → markdown rendering
    • HTML / SVG → sandboxed in-browser iframe
    • PDF → embedded browser viewer
    • Images → inline image
    • Audio / Video → native media player with controls
    • Text / code → syntax highlighting
  • Inline edit then Save back to disk.
  • 20 color themes → 10 dark + 10 light, plus per-file-type icons.
  • Breadcrumb navigation, prev/next quick file switching in preview, rubber-band drag-select, keyboard shortcuts.

Installation

# From a local folder or an npm package:
dsh plugin --profile web add /path/to/dsh-file-manager
# or from npm:
dsh plugin --profile web add dsh-file-manager

dsh plugin add pnpm-installs the package into the profile and reconciles it into the profile's bundle list. Restart the harness for it to take effect.

Requires VS Code code on PATH for "Open in VS Code"; if missing, that item reports an error but everything else still works.

Structure

dsh-file-manager/
├── package.json          # dual-face: dsh.bundle.patch (host bundle) + dsh.client (web client)
├── cordis.patch.yml      # - insert: [{id: file-manager, name: dsh-file-manager}]
├── lib/
│   ├── index.js          # HOST HALF (prebuilt) — /plugins/file-manager/* routes
│   └── client.js         # CLIENT HALF (prebuilt bundle) — __ModuleLoader__.load + React
└── README.md

Host half (lib/index.js)

inject: ['fs']. Registers routes (preferably via ctx.get('webServer') ?? ctx.get('httpServer')):

RouteMethodDescription
/plugins/file-manager/listGET ?path=List one directory level, sorted
/plugins/file-manager/searchGET ?root=&q=Recursive filename search, skips dense dirs
/plugins/file-manager/readGET ?path=Read text (up to 1 MB)
/plugins/file-manager/rawGET ?path=Stream arbitrary binary with correct MIME (pdf/html/image/video/audio)
/plugins/file-manager/downloadGET ?path=Download as attachment
/plugins/file-manager/writePOSTCreate-or-replace a file
/plugins/file-manager/renamePOSTRename / move
/plugins/file-manager/deletePOSTRecursive delete file/folder
/plugins/file-manager/mkdirPOSTCreate directory
/plugins/file-manager/touchPOSTCreate empty file
/plugins/file-manager/openPOSTOpen with the default OS app
/plugins/file-manager/revealPOSTReveal in the parent folder (OS app)
/plugins/file-manager/open-vscodePOSTOpen in VS Code (code)

Reads/writes go through ctx.fs (respects the provider/sandbox). Rename/delete/mkdir/touch/open are operations ctx.fs intentionally does not expose, so they use node:fs on paths the host owns (the client never joins path segments itself).

Client half (lib/client.js)

Prebuilt bundle following the contract window.__ModuleLoader__.load({id, factory}), require('react'), createElement (no JSX), and self-injected CSS. Registers:

slots.inject('shell.overlay', () => slots.register(
  { name: 'shell.overlay', id: 'file-manager', order: 90, label: 'file-manager' },
  (props) => react.createElement(ExplorerPanel, props),
));
slots.inject('conversation.session.header.actions', () => slots.register(
  { name: 'conversation.session.header.actions', id: 'file-manager-toggle', order: 30, label: 'file-manager' },
  (props) => react.createElement(ToggleButton, props),
));

The root is derived from the active workspace via the framework hooks (props.useWorkspaces / props.useSessions) and re-roots when the workspace changes.

Context menu

  • File: Preview · Edit · Copy path · Download · Rename… · Delete · Open with app · Reveal in Finder · Open in VS Code
  • Folder: Expand/Collapse · Copy path · Rename… · New file · New folder · Delete · Open with app · Reveal in Finder

Customization

  • Lock the workspace root: the host half always takes a path from the client (client picks root = workspace). To enforce a deployment-wide root, add a mountRoot config to the host half and gate paths against it.
  • Add more preview formats: extend the type dispatch in lib/client.js.
  • Rebuild the client: lib/client.js is currently a hand-authored prebuilt bundle. To build from TSX with the DSH pipeline, follow packages/client/tsdown.client.ts (clientBundle(...)) and export ./client => lib/client.js.

Security

  • The client only fetches the /plugins/file-manager/* routes from the origin / (the web server it was loaded from). The host half trusts the same connection fence as the GUI.
  • This is not intent-safe. The plugin runs with the privileges of the dsh process. Only install it in deployments you trust; exposing it remotely (--host) is discouraged because of the shared RCE surface.
  • Dense/generated directories (node_modules, dist, .git) are skipped during search to avoid hangs on huge trees.

License

MIT