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.

Doc Rail — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-doc-rail

Doc Rail

A resizable right-side document rail for the DeepSeek Harness web GUI: shows Markdown / plain-text files beside your conversation with light and deep-navy themes, drag-to-resize, recent-file history, and auto-sync while the file changes on disk.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-doc-rail@0.1.0
READMECompatibilityVersions
dsh-doc-rail light themedsh-doc-rail dark theme

Compatibility and provenance

Doc Rail is published as dsh-doc-rail and currently resolves to version 0.1.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/2/2026

Versions

0.1.0stable
9/2/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
74 kB
Files
10
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
9/3/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.

Remote 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.Client Ui Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundlePet@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-doc-rail

A resizable right-side document rail for the DeepSeek Harness web GUI (dsh web). It shows a Markdown or plain-text file beside your conversation — the natural home for a session handover note — with:

  • Light (warm paper) and deep-navy dark themes, switchable in the panel;
  • drag-to-resize width (double-click the left edge to reset to 400 px);
  • open any local .md / .txt path (paste a path, or pick from Recent);
  • auto-sync: the file is re-read every 4 s, so saves show up by themselves;
  • appearance, width, last-opened file and recent history are kept in process memory (survive page refreshes; reset on restart, like the plugin itself).

The panel mounts in the frame-wide shell.overlay seat — additive only, it never replaces shipped UI.

Requirements

  • DeepSeek Harness running from a source checkout or release that composes the web GUI profile (dsh web), Node.js >= 24 (the node half is plain TypeScript run directly; the browser half ships pre-built as lib/client.js).
  • The plugin needs the webServer service, so it only activates under the web profile. Installed into a CLI-only profile it stays inert on purpose.

Compatibility note: dsh-doc-rail targets the web client slot/layout APIs as of this package's development snapshot. If you use a published dsh release, prefer a matching dsh-doc-rail version (see releases) and verify the panel appears once after install.

Install

From the registry (once published):

dsh plugin --profile web add dsh-doc-rail

From a local checkout or tarball instead:

dsh plugin --profile web add /path/to/dsh-doc-rail
# or
dsh plugin --profile web add ./dsh-doc-rail-0.1.0.tgz

Restart the web GUI (dsh web) — the page then boots with the rail on the right. Click ✕ to collapse it; the small 📄 文档面板 pill reopens it.

Set a default document (optional)

The panel starts with a path input and no default file, so it is safe to ship to anyone. To pin your handover note (or any file), override the row config in the profile's own cordis.patch.yml:

- replace:
    - id: dsh-doc-rail
      name: dsh-doc-rail
      config:
        defaultPath: 'C:/Users/you/Documents/handover.md'

Paths may use / or \\ separators; the file is read as UTF-8 text.

Usage

  1. Paste a full path (.md, .txt, or any UTF-8 text file) and press Enter, or click 打开.
  2. Use 最近 to jump back to an earlier file and 清空输入 to reset the field. Files you open are added to the recent list automatically.
  3. 浅色 / 深色 switches the palette immediately; the choice is remembered.
  4. Drag the thin bar on the panel's left edge to resize; double-click it to reset.

Privacy

Everything is local: the node half reads files inside your own dsh web process and the browser half talks to it over the same-origin JSON routes /dsh-doc-rail/api/doc and /dsh-doc-rail/api/pref. No network service, no telemetry, no path leaves your machine.

Development

npm install
npm run typecheck   # tsc --noEmit
npm run bundle      # tsdown → lib/client.js (lazy-CJS module-table factory)
npm run smoke       # structural checks

The browser bundle contract is documented in packages/client/tsdown.client.ts of the harness checkout (external packages must replicate it until the preset ships to npm).

Layout

package.json          # dsh.bundle + dsh.client manifests, exports
cordis.patch.yml      # inserts the plugin row by package name
src/index.ts          # node half: doc + pref JSON routes over ctx.webServer
src/client/index.ts   # browser half: registers shell.overlay
src/client/Rail.tsx   # panel UI (themes, resize, path input, markdown render)
src/client/styles.ts  # injected stylesheet (CSS variables, no CSS pipeline)
scripts/smoke.mjs     # structural smoke check

License

MIT — see LICENSE.