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.

Chat Zone — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
C

dsh-chat-zone

Chat Zone

DSH Web plugin: one-click chat folders under ~/dsh_CHAT/<date>/chatN, a 对话区 history panel, and a split/mixed sidebar layout for chats vs projects

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

npx -y @deepseek-ai/dsh plugin --profile web add github:lasdrder0705/dsh-chat-zone#adc061775a3200cd2e1a222f1ce8c7157f04b183
READMECompatibilityVersions

Compatibility and provenance

Chat Zone is published as dsh-chat-zone and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/21/2026

Versions

0.2.0stable
8/21/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/21/2026
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

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-chat-zone

A DeepSeek Harness (DSH) web plugin that adds a one-click "Chat zone" to the sidebar.

Features

  • A "Chat zone" button at the sidebar foot, next to Settings.
  • New chat: one click creates ~/dsh_CHAT/<local date yyyy-mm-dd>/chatN (three folder levels), registers it as a DSH workspace, and opens a blank session bound to that folder. Numbering is max chatN + 1 for the day (chat1, chat3 → next is chat4; deleted numbers are not reused).
  • History: the panel groups chat folders by date (newest first, chatN descending) and shows each folder's DSH session title. Clicking a chat continues that conversation (one conversation = one folder, 1:1).
  • Sidebar layout (toggle in the Chat zone panel; default is Separate; preference is stored in localStorage):
    • Separate: chat workspaces under ~/dsh_CHAT are hidden from the Workspaces list, so their sessions land in Ungrouped at the bottom of the sidebar. Real project workspaces stay grouped.
    • Together: original behavior — each chatN remains a workspace group mixed with projects.
  • The official new-session workspace picker is untouched. No CLI, no delete/rename (use your file manager).

Install

For other people, this is the install command (web profile):

dsh plugin --profile web add github:lasdrder0705/dsh-chat-zone

Restart dsh web and refresh. A 对话区 / Chat zone button appears at the sidebar foot, next to Settings.

If the first add refuses the git prepare script (pnpm ≥10), copy the package key into that profile's pnpm-workspace.yaml:

allowBuilds:
  dsh-chat-zone: true

and re-run add. This repo ships lib/, so the allowlist is usually unnecessary.

Other install paths:

# Local checkout (development)
dsh plugin --profile web add link:/absolute/path/dsh-chat-zone

# After an npm publish
dsh plugin --profile web add dsh-chat-zone

Behavior contract

  • Root is always ~/dsh_CHAT; date folders use the local timezone.
  • Creation failures (permissions, read-only disk) surface as a red in-panel error with retry — never a silent fallback, never touching the current session.
  • A concurrent creation race re-reads the day folder and bumps the number (bounded at 8 attempts).
  • If a chatN folder somehow has several sessions, clicking opens the most recently updated one; if its session was removed, clicking restores the 1:1 invariant with a fresh bound session.
  • A missing ~/dsh_CHAT shows the empty state; "New chat" creates the root on demand.

Development

pnpm install          # or npm install
npm test              # node:test — pure logic, fake-host orchestration, registration wiring, sidebar layout
npm run typecheck
npm run build         # lib/index.js + lib/client.js + lib/types
npm run smoke         # loads the built client bundle via a stubbed window.__ModuleLoader__

tsconfig.local.json / tsconfig.build.local.json are optional dev-machine overrides that resolve @deepseek-ai/* types through paths against a local DeepSeek Harness checkout.