DeepSeek Harness plugin

dsh-workbench-doebkblc

DSH Web GUI right-side workbench plugin: a VS Code-style single right panel with Files/Git tabs plus a Preview column — lazy file explorer, Source-Control-like changes + commit, branch switching, and

Jump to install

Source facts

Repository
doebkblcya/dsh-workbench
Latest update
Aug 18, 2026
Category
Tools & Capabilities
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/doebkblcya/dsh-workbench
Plugin: dsh-workbench-doebkblc
Author: doebkblcya

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

dsh-workbench — DSH Web GUI right-side workbench

English | 中文

A single-package plugin that adds a VS Code-style workbench to the right side of the DSH Web GUI: a Preview column plus a Files / Git panel — all rendered in-page, backed by a real filesystem + git service on the host.

Screenshots

!Files + Preview

Git panel — collapsible Changes + Graph sectionsFiles tree with search
![](https://raw.githubusercontent.com/doebkblcya/dsh-workbench/main/docs/screenshots/git.png)![](https://raw.githubusercontent.com/doebkblcya/dsh-workbench/main/docs/screenshots/files.png)

Features

  • Files — a lazy file tree with filename search; clicking a file opens it

in the Preview column (drag it into the input to insert the path).

  • Git — two collapsible VS Code-style sections:

- Changes: branch bar (switch / create), commit box, and the changes list (staged / unstaged / untracked, each with a count header). - Graph: the inline Git graph with lanes and ref labels — windowed rendering keeps large repos light.

  • Sections collapse with a smooth 200 ms animation; while both are open a

draggable divider resizes the split (18%–80%).

  • Push/pull report success as a toast; failures show in a dismissible error

bar with actionable copy (auth / no-upstream / diverged / identity…).

  • Preview — multi-tab preview of markdown / html / code / diff / csv /

pdf / office / images / text, with source↔preview toggle, split edit and save (write-conflict protected).

What it does

CapabilityStatus
File explorer + filename search
Multi-format preview
Changes list (stage / unstage / discard) with group counts
Branch switch / create
Inline Git graph (windowed)
Commit
Push / pull✅ (host-side auth; toast + dismissible errors)
Collapsible sections with animation + resize divider

Architecture

The plugin ships two halves in one package; the browser UI and the host service talk over HTTP + an SSE change stream (fs watch + git poll merged).

flowchart LR
  subgraph Host[DSH web server · Node.js]
    H["Host half (src/host)<br/>gated fs + unified git service<br/>routes · workspace gate · poll guard"]
  end
  subgraph Page[Browser · DSH Web GUI]
    C["Client half (src/client)<br/>React panels · framework-free stores<br/>DOM layout controller"]
  end
  H <-->|"HTTP /workbench/* · /git/*<br/>+ SSE /workbench/events"| C
  • Host half (src/host): workspace-gated filesystem + a single unified

git service (the two upstream git services merged into one gate, one repo cache, one operation-marker probe — 1 git spawn instead of 7).

  • Browser half (src/client): a DOM layout controller that extends the

shell's grid with the Preview + workbench columns, React components, and framework-free stores (layout / explorer / scm / preview / git) with per-project persistence.

Usage

Install the published package:

dsh plugin --profile web add @doebkblcya/dsh-workbench

In any project session the panel appears on the right:

  • Files tab — browse the tree; click a file to open it in Preview.
  • Git tab — stage/discard from the changes list, write a message and

commit (Ctrl+Enter), then push/pull from the branch bar; the graph shows the history with refs and lanes.

Development

npm install
npm run build        # tsc -b && tsdown → lib/index.js + lib/client.js
npm run typecheck
# link the local checkout into your profile:
dsh plugin --profile web add link:<path-to-this-repo>

License & attribution

BSD-3-Clause. This package is a derivative work of the dsh-web-ui monorepo (https://github.com/zhu1090093659/dsh-web-ui) — specifically dsh-aionui-panel and dsh-git-graph (both 0.1.15). The right-panel design was itself re-implemented from AionUi (iOfficeAI/AionUi, Apache-2.0). See [LICENSE](./LICENSE) and [NOTICE](./NOTICE) for full attribution.

> Note: upstream's package.json metadata says Apache-2.0 while the shipped > package LICENSE files are BSD-3-Clause (the repo root LICENSE is > Apache-2.0). This fork follows the shipped package license (BSD-3-Clause); > both are permissive and derivative development is compliant either way.