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.

Workspace Files — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
W

@momojie-s/dsh-workspace-files

Workspace Files

Workspace file explorer for DeepSeek Harness web UI: right-side resizable file tree with recursive search (skips .git/node_modules), Markdown rendering and multi-language syntax highlighting

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Momojie-S/dsh-workspace-files#78a0cc7d84043ce88c1583af3482a06a58d40b8a
READMECompatibilityVersions

Compatibility and provenance

Workspace Files is published as @momojie-s/dsh-workspace-files 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
github
Registry updated
8/22/2026

Versions

0.1.0stable
8/22/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/22/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 developer-tools.

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)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-workspace-files

DeepSeek Harness Web UI 的工作区文件面板:会话标题栏一键开关,右侧可调宽文件树 + 递归文件搜索(跳过 .git / node_modules),Markdown 渲染与多语言语法高亮预览;双击浮窗居中放大,远程可一键下载文件。

一句话作用

在任何会话旁边快速浏览当前工作区的目录结构与文件内容——不用切出浏览器,不用给 agent 发消息;远程(域名/局域网)使用时直接把文件拉回本地。

环境要求

  • DeepSeek Harness >= 0.1.0-rc.6(web profile;已验证至 0.1.1-rc.2)
  • Node.js >= 20(构建期;运行期无额外依赖)

用法

  1. 会话标题栏点「🗂 文件」按钮打开面板
  2. 左栏文件树:点击目录展开/折叠;单击文件在右栏预览,双击文件浮窗居中放大(Markdown/高亮同款渲染,Esc 或点遮罩关闭)
  3. 下载:预览栏标题行与浮窗标题行都有下载按钮,二进制/超限不可预览的文件在提示语旁也有下载链接——远程使用时把文件拉回本机的正路(本地点击文件名走的是 DSH 原生打开,远程被官方 fence 拒掉)
  4. 搜索框输入关键词回车:全工作区递归搜索文件名;Esc 返回文件树
  5. 面板左缘拖动调宽(240–900px),左缘中部「›」按钮收起面板
  6. .md 文件自动渲染(标题/列表/表格/代码块高亮/链接/图片);其他文本文件按扩展名语法高亮;二进制与超过 1 MB 的文件提示不预览(但可下载)

安装

dsh plugin --profile web add @momojie-s/dsh-workspace-files
# 或本地路径
dsh plugin --profile web add ./plugins/dsh-workspace-files
dsh web

首次按 pnpm 提示在 profile 的 pnpm-workspace.yaml 加 allowBuilds 授权构建脚本。

配置

patch config 字段:

字段默认值说明
maxReadBytes1000000单文件预览读取上限(字节),超过则不预览
maxDownloadBytes200000000单文件下载上限(字节),超过回答 413
maxSearchNodes4000递归搜索访问节点预算(文件+目录)
maxSearchMatches300搜索结果条数上限
skipDirs['.git', 'node_modules']文件树与搜索都不进入的目录名
trustedHosts[]非回环 host[:port] 授权列表;远程域名/局域网访问必须配置,否则所有路由 403

远程部署示例(profile patch 层覆盖 bundle 行,认证交给网关层如 nginx basic auth):

- id: workspace-files
  config:
    trustedHosts: ['dsh.example.com']

验证

curl -s -H "Host: 127.0.0.1:3080" "http://127.0.0.1:3080/plugins/workspace-files/search?q=README"
# 期望:{"matches":[...],"truncated":false}(未打开面板时返回 not-a-directory 之外的 JSON 即通)

curl -sI -H "Host: 127.0.0.1:3080" "http://127.0.0.1:3080/plugins/workspace-files/download?path=README.md" | Select-String 'HTTP|content-disposition'
# 期望:HTTP/1.1 200 且 content-disposition: attachment; filename=...

浏览器端:会话标题栏出现「🗂 文件」按钮即客户端半部加载成功。

安全边界与设计取舍见 docs/design/overview.md。