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.

Focus Chat — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
F

@dingyi222666/dsh-focus-chat

Focus Chat

Claude Code-style focus view for the dsh web GUI: the conversation's condensed reading surface — tool calls folded into expandable metric summaries, chat 1:1 row chrome, and streaming think rows

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

npx -y @deepseek-ai/dsh plugin --profile web add github:dingyi222666/dsh-focus-chat#84c875af2c899c7de1adc55c2f9ee659e213a7ff
READMECompatibilityVersions
Off: the normal chat viewOn: the focus chat viewFocus chat settings

Compatibility and provenance

Focus Chat is published as @dingyi222666/dsh-focus-chat and currently resolves to version 0.7.20. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/16/2026

Versions

0.7.20stable
9/16/2026
0.7.19stable
9/16/2026
0.7.18stable
9/16/2026
Show 23 more versionsCollapse versions
0.7.15stable
9/11/2026
0.7.11stable
9/10/2026
0.7.10stable
9/9/2026
0.7.9stable
9/9/2026
0.7.7stable
9/9/2026
0.7.2stable
9/9/2026
0.5.0stable
9/7/2026
0.4.0stable
9/4/2026
0.3.0stable
9/2/2026
0.2.14stable
9/1/2026
0.2.13stable
8/31/2026
0.2.12stable
8/31/2026
0.2.9stable
8/31/2026
0.2.7stable
8/31/2026
0.2.6stable
8/30/2026

Related plugins

Loading related plugins…

Latest
0.7.20
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
BSD-3-Clause
Source
github
GitHub
★ 0
Weekly downloads
0
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
0.2.4stable
8/30/2026
0.2.0stable
8/30/2026
0.1.22stable
8/29/2026
0.1.21stable
8/28/2026
0.1.20stable
8/28/2026
0.1.13stable
8/26/2026
0.1.11stable
8/22/2026
0.1.10stable
8/20/2026

Related plugins

More verified plugins in ui-customization.

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)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.

README

dsh-focus-chat

English | 中文

A plugin for the dsh web GUI that adds a focus chat tab — a condensed, Claude Code–style way to read a conversation.

Screenshots

Off — the normal chat viewOn — the focus chat view
Off: the normal chat viewOn: the focus chat view
Settings
Focus chat settings

Instead of watching every step live, one assistant turn collapses into a single summary line:

Thought for 36s, edited 8 files, read 17 files, listed 18 directories, ran 2 shell commands, loaded 3 context items

A whole turn can fold further into one Worked for Xm Ys line — expanding it draws the full detail (tool cards, thinking, context, produced files, copy/fork) exactly like the chat rows; mid-turn interjections split the fold into per-stretch lines, and a stopped turn reads Stopped after X. After a refresh the whole conversation shows up folded: every turn beyond the ~50-message window renders from a Host-side index as "user message + worked-for line + the assistant's actual closing reply", and its process detail loads only when that fold expands. Very long histories page the fold stack via "Load earlier turns"; a missing index silently degrades to the in-window folds.

Switch to it whenever you want the "what happened?" view, and flip back for the full transcript.

Install

# Install from npm (requires dsh >= 0.1.6-alpha.1)
dsh plugin --profile web add @dingyi222666/dsh-focus-chat
# Restart dsh web; the tab mounts automatically
dsh web

Then open the Focus chat tab in any conversation.

Notes:

  • dsh plugin behaves like adding a dependency to your web profile. A bundle plugin is loaded once its full package name appears in the profile's dsh.profile.bundles list (adds automatically on recent dsh builds; add it manually if your build does not); the bundle patch applies on the next boot.
  • With the repo source-launched CLI, run the args through the bin directly (node --import tsx/esm apps/cli/src/bin.ts ...).

Why a separate tab, and not a patch into the chat view?

Short answer: the chat view's internals aren't open to third-party plugins — by design — and this plugin deliberately never touches dsh's own source. Concretely:

  • Keyed slots are owned, not shared. The chat's rows render through slots like conversation.chat.node, tool.call.toolview, and conversation.chat.turnTail. Those slots are declared by the chat entries themselves, and the slot system rejects a second declaration at load time — the conflict is the design speaking. A plugin cannot insert its own rows into the chat transcript, and cannot even declare the chat's own slots.
  • Plugins can't reuse the chat's renderer code. Importing values from another plugin package across the bundle boundary is forbidden (the bundle purity gate), so there's no way to borrow the chat's components — every row has to be drawn from the shared primitives and the public snapshot.
  • The only legal insertion point is the conversation.view list slot — the whole message surface. That's why the plugin ships its own complete view instead of changing how the chat view displays.

If you want the chat view itself to behave differently, that's an in-repo change to the chat package — exactly what this plugin avoids.

What's missing

Focus chat is a faithful reading surface, not a second chat view:

  • Inspect focuses the trajectory view. A tool row's Inspect action opens the official trajectory view on that call (openView('trajectory', callId)) — the 0.1.5 replacement for the removed details panel. Focus cannot render third-party keyed tool views (see the next bullet).
  • Third-party tool-card extensions don't render here. Cards that other plugins add to the chat view won't appear in the focus view; the built-in card renderers are used instead.
  • Folding is per consecutive tool-run. Any visible content between two runs (a reply, a command, your interjection) keeps them separate.
  • Inline file links need the optional file-mentions service — the same off switch the chat view uses.
  • Remote fold lines lack a few window-only readings. The turn navigator rail lists window turns only; remote turns render no produced-file list (the ui-deliverables turn data), no inline file mentions, and their closing reply cannot fork (branching stays available on window turns). Per-message feedback (like/dislike) is unaffected.

Development

This build targets the dsh v0.1.6-alpha.1 client surface, and every @deepseek-ai/* runtime dependency installs from the npm registry (see package.json). The /client entries those packages ship are window.__ModuleLoader__ browser closures, and the dsh test runtime is built against the source tree, so yarn test resolves the @deepseek-ai client surface from the dsh mainline source checkout at the same 0.1.6-alpha.1 line: vitest.config.ts derives its aliases from that checkout's own tsconfig path map (the MAINLINE constant in the config) — keep the checkout on the 0.1.6-alpha.1 release and everything else stays npm-installed.

  • yarn run build — builds the browser bundle and the Node half.
  • src/client/model/ — the pure logic (folding, merging, row models, the remote turn-slice projection); src/client/view/FocusView.tsx — the view; src/host/ — the host half's turn index and RPC channel; src/protocol.ts — the wire contract shared by both halves.
  • yarn test — behavior tests; yarn run typecheck — type gate.
  • A --dev dsh web server hot-reloads rebuilt bundles — yarn run build alone is usually enough to see changes.

Model Experience

None. The view is a pure client derivation over the already-logged conversation snapshot; nothing here reaches a model request.

KV Cache effect

None; this package neither assembles nor sends provider requests.