dsh-better-sidebar
August 22, 2026 Β· View on GitHub
A dual workbench (right sidebar + bottom panel) that opens its
ctx.betterSidebar service to every plugin βregister new sidebar pages and file viewers via
registerTab / registerFileViewer.
π Contents
- β¨ Features
- π Installation
- πΌοΈ Feature Tour
- π Plugin Ecosystem
- π Recent Updates
- β¨οΈ Keyboard Shortcuts
- π Service API
- π οΈ Development & Build
- π Security Β· β οΈ Known Limitations Β· π₯οΈ Platform Support
- π€ Contributing Β· β Star History Β· π Friends
β¨ Features
- ποΈ File Workbench: file explorer (lazy-loading tree; symlinks show their target kind β directory links expand, dangling links flagged) + CodeMirror editor; inline preview for images / Markdown (incl. Mermaid diagrams, strict-mode safe rendering + click-to-zoom) / HTML / PDF
- π Embedded Browser: multiple web tabs with back / forward / refresh; content runs in a sandboxed iframe; external links are routed by protocol by default β HTTP opens in the sidebar, HTTPS goes to the system browser (both adjustable in settings)
- π» Real Terminal: xterm.js + node-pty real shell, reconnect with transcript replay; optionally injects
terminal_*tools for the model - πΏ Git Panel: real diff + VSCode-style diff tabs, history, right-click to stage / commit / revert
- π§© Background Tasks: agent topology + background tasks (exit codes / live output / force-kill)
- π¬ Side Chat (beta): Codex-style side threads β the child inherits the parent's FULL context (completed turns + the pending question + the in-progress turn's assistant output and tool activity, honestly frozen as "interrupted") and runs independently without entering the main conversation; threads support continuous follow-ups (auto-resumed after a DSH restart) and one-click "Save as new session" promotion to a top-level session
- πͺ Dual Workbench: right sidebar + bottom panel; drag tabs to split / merge panes (cross-panel), mobile auto-merges into a full-width drawer
- π Session Isolation: layout / tabs / panels persisted per session, stale state auto-purged
- βοΈ Declarative Settings: per-item toggles in the "Side Cards" settings section, secondary settings via the gear dialog
- β‘ On-demand Loading: only ~325KB core at startup; heavy deps (terminal / editor / mermaid diagrams) load on demand (design)
- π i18n: UI text follows DSH's language (zh / en) with live switching
π Core principle: service-first β the 7 built-in tabs + 6 viewers register through the same
ctx.betterSidebarAPI as third-party plugins, with fully equal capabilities; anything the ecosystem can provide better is delegated to ecosystem plugins (26+ ecosystem plugins already β see "π Plugin Ecosystem" below). See "π Service API" and the external plugin guide.
π Installation
Prerequisites: DSH installed (dsh web boots), Node.js β₯ 20, pnpm β₯ 10.
dsh plugin --profile web add dsh-better-sidebar@latest # first run fails: pnpm 11 blocks node-pty build scripts (the dependency is still written)
cd ~/.dsh/profiles/web && pnpm approve-builds --all # allow the build scripts (re-runs the install automatically)
dsh plugin --profile web add dsh-better-sidebar@latest # re-run succeeds
Then hard-refresh the browser (Cmd/Ctrl+Shift+R) to see the sidebar (DSH hot-reloads client changes; only host-half updates need a restart).
Or let DSH install it for you β paste this prompt into any DSH session:
Install the dsh-better-sidebar plugin (a sidebar workbench for DSH):
1. Run: dsh plugin --profile web add dsh-better-sidebar@latest (the first run fails because pnpm 11 blocks node-pty build scripts β that's expected)
2. In ~/.dsh/profiles/web run: pnpm approve-builds --all (allows the build scripts and re-runs the install)
3. Run the add command again: dsh plugin --profile web add dsh-better-sidebar@latest
4. When done, remind me to hard-refresh the browser (Cmd/Ctrl+Shift+R)
If anything fails, check the troubleshooting table in the README at https://github.com/omdsh-dev/DSH-better-sidebar
Updating
dsh plugin --profile web add dsh-better-sidebar@latest
or bump the version in ~/.dsh/profiles/web/package.json (e.g. "^0.15.0") and run pnpm install. Then hard-refresh the browser (Cmd/Ctrl+Shift+R) β client changes do not need a DSH restart.
Troubleshooting
| Symptom | Cause & fix |
|---|---|
Ignored build scripts | pnpm 11 blocked build scripts. Run pnpm approve-builds --all in the profile directory (~/.dsh/profiles/web). |
minimum release age / version < 24h | The release is younger than 24 hours. Wait, or re-run once (pnpm auto-adds minimumReleaseAgeExclude). |
| "profile directory not found" | Run dsh web once so it initializes ~/.dsh/profiles/web. |
| Two sidebars on the page | Double-mount. Old hand-written line: ~/.dsh/profiles/web/cordis.patch.yml still has - insert: ... better-sidebar ... β delete it (a same-id duplicate mount makes the loader fail loudly with duplicate loader entry id). When an aggregate bundle (e.g. @linxin666/dsh-web-ui-all) mounts this package under a different id, the plugin's own bundle patch backs off automatically since 0.13.x (it detects an already-enabled mount of the same package name and does not mount itself) β no manual fix needed; if it still double-mounts, make sure the aggregate bundle precedes dsh-better-sidebar in dsh.profile.bundles. |
| Terminal fails on Windows | node-pty relies on prebuilt binaries; if none match your Node version, install a build toolchain (VS Build Tools). Mainstream Node versions are usually covered. |
| Terminal shows "node-pty failed to load" | The node-pty install is missing or broken (e.g. pnpm skipped its build script). The terminal banner shows a repair command β copy it into a terminal/cmd on the DSH machine and run it (in ~/.dsh/profiles/web: pnpm approve-builds --all && pnpm rebuild node-pty), then restart DSH and click Retry. The plugin and DSH core share the same node-pty@^1.1.0, so the repair restores both. |
dsh: command not found | Install DSH first, or run npx -y --package @deepseek-ai/dsh dsh plugin --profile web add dsh-better-sidebar@latest. |
Install from source / develop (optional β alternative to the npm flow)
To debug local changes or track the dev branch, point the dependency at a local clone and build it yourself:
1. git clone https://github.com/omdsh-dev/DSH-better-sidebar.git ~/Code/DSH-better-sidebar
cd ~/Code/DSH-better-sidebar && pnpm install && pnpm build
2. In ~/.dsh/profiles/web/package.json dependencies write "dsh-better-sidebar": "link:<absolute path of the clone>"
3. Append this mount line to ~/.dsh/profiles/web/cordis.patch.yml (to pick the terminal shell, add `config.shell`; `config.shellArgs` starts it with explicit args β when non-empty they replace the default `-l`. When omitted the host resolves `$SHELL` / the login shell / powershell.exe):
- insert:
- id: better-sidebar
name: 'dsh-better-sidebar'
config:
shell: /bin/zsh
shellArgs:
- --noprofile
- --no-rc
4. Run pnpm install in ~/.dsh/profiles/web
5. Restart DSH and hard-refresh
Update: git pull && pnpm install && pnpm build β just hard-refresh the browser (client changes hot-reload; only host-half changes need a DSH restart). To switch back to the npm channel, restore "dsh-better-sidebar": "^0.15.0" and re-run pnpm install.
Install via plugin-registry (optional β use either this or the main flow)
Prerequisite: DSH with plugin-registry integrated (dsh registry available). Enabling both channels double-mounts (the Node half loads twice, the page gets two sidebars).
git clone https://github.com/omdsh-dev/DSH-better-sidebar.git && cd DSH-better-sidebar
pnpm install && pnpm build
node scripts/package-registry.mjs # assemble the registry/ staging (manifest + artifacts + README, not committed)
dsh registry install ./registry # install (disabled by default)
dsh registry enable dsh-external/dsh-better-sidebar
Update: git pull && pnpm install && pnpm build β node scripts/package-registry.mjs β dsh registry uninstall/install/enable. Remove the other channel's mount before switching.
πΌοΈ Feature Tour
Below are real UI screenshots.
ποΈ File Workbench: Explorer
Two explorer modes: embedded in the file preview / standalone file tree. Lazy-loading directory tree, symlinks classified by target kind (directory links expand, dangling links flagged), global filename search, file/folder upload buttons plus drag-drop upload, context menu (open in new tab / open to the side / copy paths), and a hover @file button that references a file straight into the composer.
π Inline Preview: Markdown Β· Images Β· PDF
The Markdown preview renders Mermaid diagrams (strict-mode safe rendering + a second sanitize pass; click a diagram for a zoom modal with wheel-zoom and drag-pan); images / PDFs display inline via the media route; the Office suite is covered by an ecosystem plugin.
π» Real Terminal
xterm.js + node-pty real shell (not an emulator): transcript replay on reconnect, configurable shell / shellArgs (settings page or cordis.patch.yml), and optional terminal_* model tools so the agent can open terminals and run commands itself.
πΏ Git Panel
Stage / unstage / commit (Ctrl+Enter) / revert, plus a history list; clicking a changed file opens a VSCode-style diff tab (line-level red/green).
π Embedded Browser
Multiple web tabs with back / forward / reload / address bar; content runs in an opaque-origin sandboxed iframe (live sandbox status in the UI, per-page temporary unlock available); external-link clicks in the chat can be taken over into the sidebar (protocol-based routing, configurable).
π§© Tasks: Agent Topology + Background Jobs
Live subagent-tree topology (run states, batched live previews) plus the background-jobs list (exit codes / live output / force-kill); new subagents / jobs can auto-expand the sidebar (configurable).
π¬ Side Chat (beta)
Codex-style side threads: one independent tab per conversation; the thread inherits the parent's full context (including the in-progress turn, honestly frozen as "interrupted") and runs independently without polluting the main session; follow-ups survive restarts; one click promotes the thread to a top-level session.
πͺ Dual Workbench: Sidebar + Bottom Panel + Split Panes
The right sidebar and the bottom panel can stay open together; drag a tab to a pane edge to split, to the middle to merge (works across panels); panel width/height drag from the left/top edge; on mobile everything merges into a full-width drawer.
βοΈ Declarative Settings
The "Side card" section in DSH settings: one small card per tab / viewer with an independent toggle (highlighted enabled state + brand switch); secondary settings open from the "Feature settings" strip at the card bottom (switch / text / number / select rows); plugin-owned settings persist under pluginSettings.
π± Mobile
On narrow screens (<768px) the panels become a full-width drawer: bottom-panel tabs merge into the sidebar once, with touch-friendly dragging.
π Plugin Ecosystem
The ctx.betterSidebar service opens two extension points to every plugin: registerTab (sidebar pages) and registerFileViewer (file previewers). The 7 built-in tabs + 6 viewers register through the exact same API β fully equal capabilities.
import type {} from 'dsh-better-sidebar' // triggers the ctx.betterSidebar type merge
export const inject = ['betterSidebar']
export function apply(ctx: Context) {
ctx.effect(() => ctx.betterSidebar.registerTab({
id: 'my-plugin:db', title: 'Database', component: ({ scope }) => <DbView sessionId={scope.sessionId} />,
}))
ctx.effect(() => ctx.betterSidebar.registerFileViewer({
id: 'my-plugin:csv', exts: ['csv'], fetchStrategy: 'custom',
load: async (path, scope) => parseCsv(await fetchText(scope, path)),
component: ({ customData }) => <CsvGrid rows={customData} />,
}))
}
The GitHub topic dsh-better-sidebar already hosts 26+ ecosystem plugins (and growing):
The built-in "Add plugins" modal in settings: recommended catalog + one-click install command + a direct link to the GitHub topic
π Tab Plugins (sidebar pages)
| Plugin | β | Description |
|---|---|---|
| ChenRuoT/dsh-sidebar-qa | Selection-based side Q&A β Codex-style side questions / Claude Code /btw | |
| fuhefei/dsh-sentinel | Condition-driven wakeup: file / command / HTTP / process / webhook watches that wake the agent; dock + sidebar branch + global dashboard | |
| jiuge2467/dsh-studio | Full-stack enhancement workbench: multi-source MCP visual debugging hub, visual thinking engine | |
| Iwctwbh/dsh-flowglass | Flowglass: live session flowgraph (messages / tool groups / subagent branches) | |
| FeatherHunter/dsh-mattpocock-skills-deck | Game-like mission system for mattpocock/skills: fog-of-war map + task bar | |
| GULI-lab/DSH-element-source | Click any UI element on your dev page to jump to its Vue / React / Svelte / Angular source, straight into the chat | |
| Lzh3070/dsh-file-review-tab | File-change review tab: line-level red/green diffs + undo + chat-line deep links | |
| yq04/dsh-git-remotes | Git remotes tab: branches / upstream / ahead-behind, fetch with prune, ff-only pull, confirm-before-push | |
| ztyhehe/dsh-better-sidebar-svn | SVN source-control tab: status / diff / log / commit / update / revert / conflict resolution β symmetric to the built-in Git panel | |
| Melody-max114/dsh-excel-panel | Excel editing: xlsx preview/edit, live formula evaluation, merged cells, save back to the original file | |
| v587d/dsh-anysearch-refs | AnySearch results as sidebar cards: query, source snippets, highlighted keywords | |
| mlosun/dsh-docs-panel | Global docs panel: portable Markdown notes, readable from any workspace | |
| lnyuqian/dsh-skill-sidebar | Skills panel: scans local skill directories, one-click invocation copy, pinning | |
| g-yixuan/dsh-sidechat | Codex-style side chat + selection annotations (a thin consumer plugin) | |
| thirsty5034/dsh-ssh-tunnel | Multi-host SSH tunnels + SSH manager tab | |
| thirsty5034/dsh-git-forge | GitHub / Gitea accounts, project grants and push policy | |
| YesSanSan/dsh-conversation-outline | Conversation outline tab: per-turn structure, quick jump, one-line LLM titles | |
| Wulabalabo/dsh-sidebar-Explorer-Plus | File-manager tab: upload / move / delete / rename / new folder (write operations) | |
| yq04/dsh-turn-review | Turn review: review agent changes turn by turn | |
| Ghz114514/dsh-refpics | Pinterest-style reference-image search: masonry wall, sidebar board, downloads, save-to-Eagle | |
| yzlin499/dsh-yzlin499-easy-plugins | A handy utility bundle for a bare-bones DSH |
πΌοΈ Viewer Plugins (file previewers)
| Plugin | β | Description |
|---|---|---|
| HuanLinOTO/dsh-plugin-better-sidebar-plugin-office | Office-suite preview (.docx / .xlsx / .pptx) as a separate bundle to slim the core (in the official recommended catalog) | |
| zemul/dsh-video-preview | Inline video preview: .mp4 / .webm / .mov / .mkv / .avi with a /video host route supporting HTTP Range scrubbing | |
| dong-victor/dsh-better-sidebar-jupyter | Runnable .ipynb notebook view: lazy-start Python kernel, streaming outputs, save-back |
π§° Enhancements & Tools
| Plugin | β | Description |
|---|---|---|
| dong-victor/dsh-better-sidebar-terminal-plus | Terminal enhancement: bundled Nerd Font icons, xterm glyph fixes, stable terminal cwd | |
| Max-Null/dsh-sidebar-preview-select | Preview selection boost: select text in any sidebar preview β floating "send to session" |
π£ List your plugin: tag your repo with the
dsh-better-sidebartopic to appear on the topic page; then PR onePluginEntryintosrc/client/plugins-tabs.ts/src/client/plugins-viewers.tsto join the built-in recommended catalog (data integrity is guarded bytests/plugin-list.spec.ts).
π Recent Updates
Supported DSH versions: Β· full release history on the Releases page
v0.15.0
All changes since v0.14.0:
β¨ New features
- π¬ Side Chat (beta) tab (#286): Codex-style side threads, one independent tab per conversation β the child inherits the parent's full context (completed turns + pending messages + the in-progress turn's assistant output and tool activity, honestly frozen with an "interrupted" marker); created with an identical composition (same preset / provider / model) so the first request reuses the parent's input prefix cache; threads stay invisible in the main session list with zero subagent-catalog noise; follow-ups survive DSH restarts (auto cold-resume); one-click "Save as new session" promotes the thread to a top-level session (design)
- π€ Upload into the files window (#239): header "upload file / upload folder" buttons plus drag-drop (drop on the tree body = workspace root, on a directory row = that directory, on a file row = its parent directory, VSCode semantics); full-window blurred progress overlay while uploading (per-file progress + cancel / Esc); buttons disabled while busy, tree refreshes after the upload settles
- π§© Desktop compatibility in four options (#284): "Position compatibility mode" is now a main-row dropdown β Auto-detect (default, conservative: only the standard Window Controls Overlay geometry contributes; real 32/36px caption-overlay heights per shell, live on maximize/restore; zero modification on plain web) / DSH official web (explicitly no adaptation) / Shell preset (built-in, opt-in; only shells that appeared in this repo's issues/PRs with 100+ stars, "detected" badge when the environment matches) / Custom (free-form CSS + shift distance). Documents that already carried compatibility values migrate to the custom scheme; interactive chrome opts out of desktop drag regions (
no-drag); the bottom-push anchor is a composite selector ([data-pane]and:has(> [data-slot])) - ποΈ Settings page UI/UX modernization (#300): the side-card secondary-settings entry is now a full-width "Feature settings" strip at the card bottom (replacing the invisible corner gear β much easier to discover); coordinated two-tone enabled state (brand activation accent + success-green check badge); every color is still
--dsw-alias-*token-derived so skins follow automatically - β New entries in the recommended-plugin catalog:
dsh-docs-panel(global docs, #230),dsh-flowglass(#261),dsh-git-forgeanddsh-ssh-tunnel(#204),dsh-turn-review(#102)
π Fixes
- β‘ Batched live preview for the subagent page (#298): the old implementation polled
subagents.historyper running subagent, each poll triggering a full host-side enumeration β an O(NΒ²) amplification that stalled the page with many concurrent subagents; now a single batch routesubagents.live(one enumeration of the whole tree) plus one client poller with a single in-flight request; display logic and copy unchanged - π±οΈ Interrupted / fast-release drags no longer roll back (#249, closes #247 #248): interrupted or fast-released drags commit the last known position; HMR re-activation re-locates the center column (fixes the blank bottom panel after a hot reload)
- π Push variables stay effective while mounted (#259, fixes #258): the bottom panel no longer flashes full-width after a drag is released
- π§ Adapted to DSH 0.1.1-rc.1 / rc.2 (@next) (#297 #305): no code changes needed
- π Upload-chain hardening (#239): empty and absolute
relativePathsegments are refused outright; uniquely named temp files (concurrent uploads stay independent, crashed processes never block later uploads); write-stream error listeners (a failing disk can no longer crash the host); client error codes unified with the wire (too-large), 413s localized
Older releases (v0.12.0 β v0.14.0)
v0.14.0
β οΈ This release requires DSH β₯ 0.1.0-rc.8. All changes since v0.13.1:
β¨ New features
- πΌοΈ Unified panel-host injection refactor (#232): panels/toggle clusters moved into a
[data-dsh-panel-host]fixed containing block (fixed inset-0 z-40), immune to desktop-shell intermediate transforms hijackingfixed; mount self-check (page-level transform βdata-dsh-panel-host-degradeddegraded sync, judged on uncorrected geometry, exits only when the ancestor transform is gone); push anchor switched to#root [data-dsh-frame] > [data-pane="conversation"]+#rootcalc width against desktop-shell additive overflow; chunk revalidation on activation (HEAD+ETag keeps unchanged chunks, 5s timeout fails open);visualViewportkeyboard inset +env(safe-area-inset-*)mobile adaptation - π Separate file windows by default (#232):
editorExplorernow defaults to separate β tree clicks / file opens create a new tab per path and the path-less window is a pure file manager; merged mode stays available as an opt-in - π₯οΈ Terminal shell / shellArgs configurable from the settings page (#232): the terminal card's gear popup gains "Shell path" and "Shell arguments" rows (previously yaml-only via
cordis.patch.yml) β saved values take effect immediately for terminals opened afterwards (UI terminals and modelterminal_createalike); empty keeps the existing yaml β$SHELL/ login shell /powershell.exeresolution order - π·οΈ Version badge on the settings page (#232): the side-card settings section now opens with a
DSH-better-sidebar v0.14.0identity badge (version synced with the service instance, test-guarded) - π Add-plugin catalog: search / grouping / independent scroll (#232): built for a growing plugin ecosystem β a live search box (filters by name / id / description), optional
categorygrouping for entries, and an independently scrolling list (the modal no longer grows unbounded with catalog size)
π Fixes
- π§© rc.8 module-system migration (#232): rc.8 no longer exposes the
window.__DSH_MODULES__page global (it moved to thectx.modulesservice), which broke every lazy chunk's externals resolution β the client now injects themodulesservice and shares it with chunk-bundle copies through a plugin-owned global (terminal / editor / Mermaid on-demand loading restored) - π§© Chunk revalidation barrier hardening (#232): HEAD revalidation gains a 5s timeout (fails open on a stuck route so the barrier can never wedge lazy loads);
resetChunksclears a pending revalidation barrier - π±οΈ Drag robustness (#232): fast releases (browsers merge/lose pointermove bursts) commit the last known dragged position instead of rolling back;
pointercancel/ lost-capture interruptions keep the drag result too; the center column is re-measured right after commit (no mid-frame bottom-panel width jump); HMR re-activation re-locates the center column via an<html>style observer plus a retry when the bottom panel opens (fixes the blank bottom panel / shifted input bar after a hot reload)
v0.13.1
β¨ New features
- π Safe Mermaid rendering in the Markdown preview (#164): when a previewed md file contains mermaid fences, a
client-mermaid.jschunk (~7MB) is served on demand (zero load without mermaid); defense-in-depth rendering βsecurityLevel: 'strict'+htmlLabels: false(node labels use real SVG<text>) + a second sanitize pass before SVG injection (foreignObject/script/foreign HTML elements removed,@*/on*/hrefattributes stripped); click a diagram to zoom in a modal overlay (wheel zoom centered on the cursor, drag pan, toolbar & shortcuts), re-renders with light/dark theme, falls back to the raw code block on parse failure - π₯οΈ Configurable terminal shell & shellArgs (#125):
cordis.patch.ymlbetter-sidebar.configcan setshell/shellArgs(a non-emptyshellArgsfully replaces the defaults; unset keeps the previous auto-resolution of$SHELL/ login shell /powershell.exe), applied to both UI terminals and agent terminals (terminal_create); terminal tab titles now show the shell name (bash/zsh/powershell) and internal tab ids use UUIDs so the same shell can open multiple terminals
π Fixes
- π Aggregate double-mount auto-yield (#200): when an aggregate package (e.g. dsh-web-ui-all) mounts the same package under its own entry id, the guard expression in
cordis.patch.ymldisables the plugin's ownbetter-sidebarrow so/sidebar/apiis no longer registered twice (duplicate prefix routecrashing the whole plugin tree /dsh web); standalone installs behave as before - π§ Adapted to DSH 0.1.0-rc.7 (#207, fixes #206): fixes the
agent-presets: refusing to compose an unscoped contexterror when picking a model / sending a message after DSH moved to rc.7
v0.13.0
β¨ New features
- π Files window merged with the explorer (#151): new
editorExplorersetting (editor card gear) β file tabs gain a path-input header plus a toggleable right-docked file tree (per-tab open/width memory, drag-resize 160β480px from the left edge, global filename search via the hostfs.searchroute with a hard budget, skipping.gitand symlink dirs); in separate mode (default) tree clicks / Enter in the path input open each file in its own new tab, merged mode switches the current tab in place; fresh sessions seed an empty Files window instead of the explorer tab, and a path-less window is a bare file manager in separate mode / a chrome'd empty file window in merged mode; the tree context menu offers "Open in new tab" and "Open to the side" (split) - ποΈ Select rows for declarative settings (#151): settings rows gain
type: 'select'(optionswith value/title/desc/icon,multistores the picked values as an array); options with icons render big-icon option cards and keep the icon in the closed anchor;editorExplorerbecame an iconed select (merged vs separate); the capability list gainedsettingSelect - π Mutual exclusion with the dsh-web-ui family right panel (#181): reads the
aionui-panelsettings namespace's provider choice β when "Use aionui-panel" is selected, the whole better-sidebar (right sidebar / bottom panel / floating entry / all takeovers) does not mount; with DSH-better-sidebar (or no aionui installed) it behaves as before. Takes effect live after a settings save (settings-document push), no reload needed
v0.12.3
β¨ New features
- π¨ Skin compatibility (token-driven): fully consumes DSH design tokens and follows the dsh-web-ui skin center's 10 skins automatically; terminal/editor surfaces fall back to opaque backgrounds under transparent/translucent-glass token values so text never scrolls over the skin art (#110, fixes #106 #105 #90 #60, also #52 #57 #92)
- ποΈ Unified path handling: UNC / symlink classification (directory symlinks expandable, broken links highlighted) + HTML-route platform guards (#134, #65 #67 #43 #79 #115)
- π₯οΈ Configurable terminal shell: custom shell setting with Windows pwsh auto-probe (#95)
- π Editor languages: C# / Kotlin / Swift syntax highlighting (#120)
- π§ Settings nav icon: settings-page navigation icon and layout polish (#114)
- β Recommended-plugin catalog: added
dsh-git-remotesβ Git Remotes tab (branches/upstream/ahead-behind, fetch with prune, ff-only pull, confirm-before-push; does not replace the built-in stage/commit tab) (#91); anddsh-video-previewβ inline video preview (.mp4/.webm/.mov/.mkv/.avi etc.) backed by a /video host route with HTTP Range (206) scrubbing, not capped by the 20MB mediaLimit (#126)
π Fixes
- π§ xterm migration: deprecated xterm dependency migrated to
@xterm/xterm(Closes #122, #128) - π Markdown editor: selection-to-conversation popup restored (#24)
- π node-pty load failure no longer crashes the server (#140): the host half now lazy-loads node-pty β when it is missing the plugin still mounts, the terminal shows a repair banner (copyable command + Retry button), and agent terminal tools are skipped
- π§ͺ Test engineering: unit spec split (#141) + flaky smoke cleanup fix
β¨οΈ Keyboard Shortcuts
| Action | Keys |
|---|---|
| Save edits | Ctrl/Cmd + S |
| Git commit | Ctrl + Enter |
| Close tab | Middle mouse button |
| Split / merge panes | Drag tab to pane edge / middle |
| Reference file to input | Hover the @file button at end of line |
| Copy file path | Right-click row β copy relative/absolute path |
π Service API
Since v0.4.0 the plugin exposes the ctx.betterSidebar service β other plugins can register sidebar pages and file viewers (the 7 built-in tabs + 6 viewers register through the same service). v0.12.1 completed the base capabilities (complete type exports, capability detection, state subscription, tab badges, lifecycle callbacks, targeted open, plugin-owned settings, etc.).
Full integration docs:
AGENTS.mdβ the in-repo integration doc (full fields, matching algorithm, HMR pitfalls, declarative settings, version detection);docs/external-plugin-guide.mdβ the external-plugin guide (with a complete minimal example).
β Add Plugins (recommended plugin catalog)
The dashed cards at the end of the "Sidebar content" / "File viewers" grids in the "Side Cards" settings section open the Add tab plugins / Add preview plugins modals: each declares its open extension point, offers a "Browse more plugins on GitHub" button (the GitHub topic dsh-better-sidebar), and lists the recommended catalog (name / repo / description / install script) β "Open" jumps to the repo, "Copy" writes the install command to the clipboard.
Curating a new plugin: append a PluginEntry to src/client/plugins-tabs.ts (tab registrations) or src/client/plugins-viewers.ts (file-previewer registrations) and tag your repo with the dsh-better-sidebar topic; data integrity is guarded by tests/plugin-list.spec.ts.
π οΈ Development & Build
pnpm install # @deepseek-ai/* devDependencies resolve to 0.1.1-rc.1 (published) β no token needed
pnpm check:style # ESLint correctness + low-churn formatting gate
pnpm typecheck # tsc --noEmit
pnpm build # β lib/index.js + lib/invariant.js + lib/client.js + lib/client-registry.js + lib/types
pnpm check:consumer-types # browser-only public declaration check (build first)
pnpm test # vitest (includes manifest consistency guard; build first)
pnpm watch # tsdown --watch
Architecture: a single npm package with host/client halves β host (src/index.ts): /sidebar/api/* JSON API, /sidebar/file media route, /sidebar/html preview route, /sidebar/ws/terminal WebSocket (fs / git / pty / preview, all session-scoped with a trust fence); client (src/client/index.tsx): portal sidebar + views + interception; state persisted per session in localStorage. Organized per DSH official conventions (no default export, dual client bundles); no dependency on npm / checkout at runtime (@deepseek-ai/* provided by the web profile).
π Security
- Routes protected by a Host-header trust fence (same as
/api);fs.writeis atomic; media/preview routes only serve files inside the session cwd; git only shells out to the CLI and never sets identity - HTML preview and browser tab content render in opaque-origin sandboxed iframes (no
allow-same-origin/allow-top-navigation,no-referrer, all permission policies disabled); the/sidebar/htmlroute carries a CSPsandbox+ size/path bounds; the address bar rejectsjavascript:/data:/file:and local addresses like localhost - The UI shows the sandbox status live (red warning when off) and can temporarily unlock the current page; the settings page can disable the sandbox per feature (disabled by default, with a warning) β when off, content shares the origin with the UI; only recommended for fully trusted content
β οΈ Known Limitations
- Git has no push/pull/fetch; no file watcher (manual refresh); tool inline file-open buttons cannot be intercepted
- Dragging a terminal tab to another pane remounts it (shell restarts)
- Office-suite preview (.docx/.xlsx/.pptx) moved to the recommended office plugin (see the "Add plugins" modals in settings); without it these files fall through to the code/download fallbacks
- Browser sandbox has no login state / third-party cookies are restricted; some sites need popup login; sites that refuse embedding via
X-Frame-Options/frame-ancestors(e.g. arxiv.org) show a reason panel (with "Open in browser"); in-iframe navigation does not enter the back stack - HTML preview renders the saved file (not unsaved drafts)
- No bottom panel on mobile (<768px): on narrow screens its tabs merge into the right sidebar once (after migrating back to desktop they stay in the right sidebar); the desktop bottom panel is only available on wide viewports; auto-open terminal on first bottom-panel expand does not trigger on mobile
π₯οΈ Platform Support
Windows / Linux / macOS (macOS validated daily; the rest covered by unit tests); node-pty prefers prebuilt binaries, otherwise a build toolchain is required (Windows VS Build Tools / Linux make+g+++python3 / macOS Xcode CLT).
π€ Contributing
- Code changes go through PRs: develop on a
feat/*/fix/*branch, thengh pr create; docs-only changes may be pushed to main directly - Curate an ecosystem plugin: tag your repo with
dsh-better-sidebar+ PR aPluginEntryintosrc/client/plugins-tabs.ts/plugins-viewers.ts - Before submitting:
pnpm check:style && pnpm typecheck && pnpm build && pnpm check:consumer-types && pnpm test(CI additionally gates on npm-pack β real-mount β headless-render viapnpm test:mount) - See
AGENTS.mdfor the repository rules (hard constraints, CI lanes, release flow)
β Star History
π₯ Contributors
Thanks to everyone who contributed:
π Friends
- dsh-tianshu-tui: an interactive terminal UI plugin for DeepSeek Harness (its rendering core evolved from the self-developed harness agent Tianshu-Tui), adding TDD and evidence-gate workflows on top of the official harness
- dsh-TUI: a Claude Code-style fullscreen interactive TUI plugin β pixel-whale top bar, live working-status row, streaming thought expansion, double-Esc rollback, context progress bar + TPS meter; one-command npm install
- dshfind Plugin Market: a third-party plugin marketplace β a listing of public repos under the GitHub topic
dsh-plugin, with stars, contributors and growth data synced daily - DeepSeek Harness Desktop: a modern desktop client for the DeepSeek Harness ecosystem β start and manage a local Harness service without configuring Node.js or running commands; official site