dsh-worktable 🖥️
English · 简体中文
An agent-project workbench for DeepSeek Harness — a sidebar app drawer that turns every project into dockable windows, plus a built-in control room that watches them all in real time.
📸 Screenshots
![]() |
🖥️ Control room — the built-in default project: a live card grid watching every project (working / needs you / done) with glassmorphism cards on a blueprint grid |
![]() |
🧩 Worktable sidebar — the app drawer: projects, shortcuts and the pinned control-room entry |
![]() |
🪟 Our projects — every project opens as a dockable split workspace (resident apps like Travel Atlas included) |
✨ Feature tour
🧩 Sidebar app drawer
- Collects your self-hosted projects (and resident plugins like dsh-travelatlas) in one place
- Rename / icon / reorder / hide each project; per-project folder; project ↔ conversation binding — opening a project switches the chat pane to its bound conversation
- Collapse the sidebar and every project becomes a tappable square tile (icon only)
🪟 Dockable split workspace
- Declarative layout presets (left column / top row / main grid + right chat pane)
- Draggable dividers, per-pane tabs, per-layout width persistence
- Built-in panes: file explorer, terminal, browser, animation site, custom window
- Custom window: send a requirement to a new or existing conversation; the agent builds it and the result auto-mounts into the window (locked)
🖥️ Control room (built-in default project)
- A pinned, undeletable first project — bind one management conversation on first open
- 3-column card grid mirrors every project: working / needs you / done with live runtime, subagent counts and a cleaned message preview
- Event-driven host snapshot mirroring — zero polling, zero tokens
- Glassmorphism cards, dark / light / system theme, neon status glows and a rotating comet on busy cards
At a glance
| 🧩 Plugin type | Cordis plugin — host routes + web client, pure additive (no official plugin replaced) |
| 🪟 Workspace engine | Self-built split engine rendered into the host shell overlay seat |
| 💬 Chat pane | Reuses the host conversation — the plugin only selects sessions (sessions.open) |
| 📡 Status data | Mirror of the host session runtime snapshots (subscription-driven) |
| 💾 State | localStorage only (dsh.worktable.*); no workspace files touched |
| 🎨 UI | TypeScript + React (host externals) + vanilla CSS, dark-first with light theme |
Quick start
Install (pick one):
A · one-liner (recommended) — straight from the GitHub Release tarball, no Git needed:
dsh plugin --profile web add "https://github.com/Aisland-SJL/dsh-worktable/releases/latest/download/dsh-worktable.tgz"B · local clone (for hacking on the source) —
link:accepts a local absolute path only (no spaces in the path):git clone https://github.com/Aisland-SJL/dsh-worktable.git dsh plugin --profile web add "link:<absolute path of the cloned dsh-worktable directory>/01_content" # e.g. cloned into D:\tools → dsh plugin --profile web add "link:D:/tools/dsh-worktable/01_content"Either way the
addcommand registersdsh-worktablein the profile bundle list (writes to~/.dsh, may ask for authorization). If thedshcommand is missing, usenpx @deepseek-ai/dshinstead.Restart the DSH web process, refresh the GUI
Open the control room: click the pinned 🖥️ control-room card → bind one conversation (join existing or create new) → you get the live card grid
Create projects: sidebar + → pick a layout preset, set a project folder
Architecture
One package ships the host Cordis plugin and the web client:
- host:
/api/worktable/*routes — health, file system, git, file read/write, site serving, mkdir, workspaces, native skin template; WebSocket/api/worktable/termfor the terminal pane (PowerShell on Windows) - client: injected into the sidebar and the shell overlay via the slot protocol; the split engine, tab model, drag/drop and persistence are self-built
- control room: reads the host session list snapshot (running / pending / completed, jobs, subagent catalogs) — an event-driven mirror, no model involvement
- window tasks: the agent writes
widget-result.jsoninto the project folder on completion; the client mounts the artifact into the addressed window and locks it
Development & testing
cd 01_content
npm install
npm run build # lib/index.js + lib/client.js
node --check lib/index.js
- Build must run inside
01_content— building from the repo root writeslib/to the wrong place while the host keeps loading the old bundle - The client bundle keeps the
window.__ModuleLoader__.loadhandshake;reactand@deepseek-ai/*stay external - Regression:
04_test/functional-diag.cjs(20 steps, strict gate) plus targeted probes (control room, bind panel, collapsed rail, model inheritance), the path matrix (04_test/pathutil-matrix.cjs) and update-check scenarios (04_test/probe-update-scenarios.cjs)
Known limits
- Platform: Windows is the fully tested platform. macOS support is experimental: the core file-path code has been adapted for cross-platform use, but no end-to-end test has been completed on macOS hardware.
- State lives in the browser (
localStorage) — projects, bindings and views do not sync across machines - The terminal pane is a plain PowerShell host on Windows (no PTY feature parity with the native terminal app)
- Auto-mount requires the agent to actually write
widget-result.jsonin the project folder - The control room monitors projects that are bound to a conversation; unbound projects show as idle
Privacy
No telemetry, no network calls beyond the host APIs and the plugin routes. All user state stays in localStorage. Optional update check: a read-only GET to the GitHub Releases API (automatic at most once a day, plus a manual "Check now" button); nothing is uploaded, and it can be disabled in Settings.
License
MIT
Related
- dsh-reminder — cross-window completion & approval notifications
- dsh-usage — persistent balance/usage dock


