dsh-workspace-drag
DSH Web UI plugin — drag a conversation onto any workspace to organize it
- Stars
- 0
- Language
- JavaScript
- Created
- Aug 20, 2026
- Updated
- Aug 20, 2026
Introduction
dsh-workspace-drag
DSH Web UI plugin — drag a conversation onto any workspace to organize it
drag session row → workspace group → move(cwd + files + registry)
DSH Web UI plugin — in the sidebar grouped view, drag a conversation onto another workspace's title (or any session row within that group) and release to move the conversation there. Seamless drag-and-drop: no popups, no intermediate panels — drop it and it's organized.
Installation
One-command install into the DSH web profile. Run this from inside the plugin directory (the folder containing package.json — after cloning dsh-workspace-drag, cd into it first):
npm run install:plugin
Or directly (cross-platform, uses Node.js):
node install-plugin.mjs
Works on Windows (PowerShell), macOS and Linux — the installer is a plain Node.js script, no bash or PowerShell-specific syntax.
This registers the plugin into ~/.dsh/profiles/web (on Windows: %USERPROFILE%\.dsh\profiles\web) by adding a link: dependency to the profile's package.json and creating a node_modules symlink. It does not run pnpm install, so it avoids the pnpm minimumReleaseAge policy that rejects dependencies published within the last 24 hours. Idempotent — re-running is a no-op when already installed.
⚠️ Windows notes
- Run the command inside the cloned plugin folder, not in your home directory —
npm runneeds apackage.jsonin the current directory (the errorENOENT ... C:\Users\<you>\package.jsonmeans you ran it in the wrong folder).- Creating the symlink uses
junction, which works on Windows without Developer Mode or Administrator rights.- If symlink creation is blocked by policy, the
link:dependency is still written to the profile — then finish withdsh plugin --profile web add link:<plugin-path>.
After installation:
- Client-only changes: refresh the browser page.
- Host changes: restart
dsh web.
Note: the plugin requires the
zstdCLI (see Dependencies).
Features
- Seamless cross-workspace drag-and-drop: drag a session row → hover over another workspace group (title or any session row within it) to highlight → release to migrate.
- No floating panels, no confirmation dialogs; same-workspace drag-and-drop is left to DSH's native reordering, undisturbed.
- A brief success banner appears after the move, and the conversation immediately appears in the target workspace.
- Toggle: enable/disable with one click on the Settings → Drag to Organize page; when disabled, drag-and-drop is inert (no highlighting, no migration).
- Safety:
- Sessions that are currently being written to (agent running, log modified within the last 30 seconds) cannot be moved.
- The host-side migration is a copy-verify-atomic-swap: the session directory is copied to a staging location, the rewritten log is verified, then published to the destination. The old directory is only removed after the new copy is verified — data is never lost on failure.
- The migration physically relocates the session log file, rewrites the header
cwdfield, and updates the workspace registry ownership account.
Data Model
- Each session's workspace identity is its header
cwd(an absolute directory path). - Sessions are stored at
~/.dsh/sessions/<projectKey(cwd)>/<session-id>/session.jsonl[.zstd]. - Migration = relocating the session directory under the new workspace's
projectKeydirectory + rewriting the first (header) line'scwd+ usingctx.workspaceRegistry's detach/attach to update the workspace ownership ledger. - zstd logs are concatenated multi-frame containers: frame 1 = exactly one header line (newline-terminated), frames 2..N = appended event batches. The DSH reader requires the first frame to decode to exactly this header line.
- During migration, zstd logs undergo frame-preserving surgery: only frame 1 is decoded → the header
cwdis rewritten → re-encoded as a single checksummed frame (matching the DSH backend) → concatenated with the remaining original frames (byte-identical). The log must never be compressed as a single frame (that would break the DSH reader's "first frame = header only" invariant).
File Layout
dsh-workspace-drag/
├── package.json # dsh.bundle.patch + client inject
├── cordis.patch.yml # registers the plugin row in the web profile
├── lib/
│ ├── index.js # Host: config/move HTTP routes + migration logic
│ └── client.js # Browser: settings page (toggle) + document-level drag engine
├── test/
│ ├── fixtures/multiframe-session.jsonl.zstd # multi-frame zstd session sample (7 frames)
│ ├── verify-core.mjs # zstd round-trip + DSH frame scanner compatibility
│ └── integration-move.mjs # end-to-end integration test for moveSessionToWorkspace
└── README.md
Host HTTP API
| Method | Path | Description |
|---|---|---|
| GET | /api/dsh-workspace-drag/config | Read toggle { "enabled": true } |
| POST | /api/dsh-workspace-drag/config | Write toggle { "enabled": false } |
| POST | /api/dsh-workspace-drag/move | { "sessionId", "targetWorkspaceId" } — move a conversation |
Configuration is persisted in ~/.dsh/dsh-workspace-drag.json.
Dependencies
- The host half requires the
zstdCLI. The plugin auto-detects the binary viaPATHsearch, falling back to common paths (/opt/homebrew/bin/zstd,/usr/local/bin/zstd,/usr/bin/zstd). Install viabrew install zstd(macOS) orapt install zstd(Linux). - Requires DSH built-in services:
webServer/sessions/sessionPersistence/workspaceRegistry(all loaded by@deepseek-ai/dsh-web-app).
Tests
cd test
node verify-core.mjs # Validate zstd round-trip + DSH frame scanner compatibility
node integration-move.mjs # End-to-end integration test (temp directory, does not touch real data)
Limitations
- Sessions being actively written to (agent running, log modified within the last 30 seconds) cannot be moved.
- Migration changes the session's
cwd— its workspace ownership and disk storage location. This is the essence of "organizing into a workspace." - The
zstdCLI must be installed (auto-detected via PATH; no hardcoded path).