DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Doc Rail — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

dsh-doc-rail

Doc Rail

适用于 DeepSeek Harness Web GUI 的可调整大小的右侧文档栏:在对话旁显示 Markdown / 纯文本文件,支持浅色和深海军蓝主题、拖动调整大小、最近文件历史记录,以及文件在磁盘上发生变化时自动同步。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add dsh-doc-rail@0.1.0
README兼容性版本
dsh-doc-rail light themedsh-doc-rail dark theme

兼容性与来源证明

Doc Rail 以 dsh-doc-rail 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/2

版本

0.1.0stable
2026/9/2

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
74 kB
文件数
10
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
0
最近提交
2026/9/3
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 ui-customization 分类下经过校验的插件。

Better Sidebardsh-better-sidebarDSH web 插件:类似 VSCode 的右侧边栏(资源管理器 / 编辑器 / 终端 / git / 浏览器),按对话会话隔离。提供服务,供其他插件注册侧边栏标签页和文件查看器。Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio 及其精选幻灯片模板,作为原生 DeepSeek Harness 对话视图。Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航Dream Skindsh-dream-skinDeepSeek Harness 换肤插件(Dream Skin for DSH):8 套 iOS / Linear 式清透冷调的高质感主题 + 弥散光壁纸 + 每款皮肤智能背景 + 强调色 + 主题包分享,把换肤做成材质与配色克制的高级感工艺,而非贴图。在原生 DSH Web 和第三方桌面客户端(DSH Desktop)中运行:8 款原创高端主题、玻璃材质、壁纸 2.0

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.