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 Dir — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

dsh-side-dir

Side Dir

Project directory preview panel for the DeepSeek Harness web GUI: lazy directory tree + read-only file preview in the details column, toggled from the sidebar. Data flows through a fenced /dirpreview host command over the official command.execute RPC.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:NonchalantLudens/dsh-side-dir#bc3547c77b4fbc143e64cd3242ca804fea2c8c0d
READMECompatibilityVersions

Compatibility and provenance

Side Dir is published as dsh-side-dir 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/24/2026

Versions

0.1.0stable
8/24/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/26/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-side-dir

DeepSeek Harness(dsh)Web 界面的项目目录预览插件:侧栏「目录」开关 → 右侧 details 面板浏览当前会话工作目录的文件树,点击文件只读预览内容。

English | 简体中文

How it works

  • 目录树:懒加载。展开目录时经 /dirpreview list 命令(ctx.fs.listDir)列出该层全部子项——含文件、类型与大小,单层上限 500 条。
  • 文件内容:核心 wire 契约封闭(插件不能新增 RPC),内容通过插件注册的 /dirpreview read 命令经 command.execute RPC 返回——官方允许的 host→client 数据通道。
  • 安全围栏:所有路径 ctx.fs.resolve 到会话 cwd 并用 ctx.fs.contains 校验,越界拒绝;只读(handler 无任何写入);内容上限 256KiB;二进制文件由 ctx.fs.readText 原生拒绝。
  • 入口:侧栏底部「目录」按钮切换。ON 时以 priority 遮蔽 details 单槽渲染面板(原生面板在 OFF 后完整恢复);OFF 释放。

Install

dsh plugin --profile web add github:NonchalantLudens/dsh-side-dir
# 或 npm 发布后:
# dsh plugin --profile web add dsh-side-dir

重启 dsh web,侧栏底部点「目录」。

Structure

  • lib/index.js — host 半边:注册 /dirpreview 命令(root / list / read 三个子命令)
  • lib/client.js — 客户端产物(加载器闭包工厂格式,手写维护):侧栏开关 + details 面板(目录树 + 文件预览)
  • cordis.patch.yml — 安装时插入 host 行;dsh.client 声明使客户端产物自动进入 web roster

Design doc

docs/specs/2026-08-23-side-dir-design.md

License

MIT