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.

Webchat — DSH Plugin for DeepSeek Harness
← Plugins
W

dsh-webchat

Webchat

Codex-ChatGPT-mode style web chat for DeepSeek Harness: chat through chat.deepseek.com (deepseek-chat) using your DeepSeek web session instead of API billing, then transfer the conversation into a harness session as development context — or let the harness agent chat through the same web session. Ho

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

npx -y @deepseek-ai/dsh plugin --profile web add github:xmuwenxiang/dsh-web-chat#835e501ea40738de4f0bc3e63c406a9f416984cd
READMECompatibilityVersions
Plugin screenshotPlugin screenshot

Description

Codex-ChatGPT-mode style web chat for DeepSeek Harness: chat through chat.deepseek.com (deepseek-chat) using your DeepSeek web session instead of API billing, then transfer the conversation into a harness session as development context — or let the harness agent chat through the same web session. Hot-pluggable: mounted via the web profile's bundles list + a profile node_modules install, no dsh source changes.

Compatibility and provenance

Webchat is published as dsh-webchat 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
9/7/2026

Versions

0.2.0stable
9/7/2026
0.1.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
Apache-2.0
Source
github
GitHub
★ 8
Weekly downloads
0
Last push
9/7/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in integrations-communication.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseRemote 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 rPocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.

README

dsh-webchat

A "Codex ChatGPT mode" plugin for DeepSeek Harness: drive chat.deepseek.com with a real browser, chat with deepseek-chat (and deepseek-reasoner) using your DeepSeek web session — no API billing. Transfer a conversation into a harness session as development context (distilled into an executable task brief), import stored web conversations as markdown context, or let the harness agent keep chatting through the same web session.

Features

  • Web chat over your DeepSeek web login, with streaming replies and "Deep Think (R1)" / "Web Search" toggles.
  • Transfer to Harness: distill the current conversation into a task brief and open it as a new harness session to continue development, or "continue into" an existing session (append the brief as a new message); pick a target workspace (or leave it ungrouped).
  • Recover web conversations: pull web-side conversations not yet stored locally into the local store (panel "Recover from web" / webchat_recover).
  • Import as context: export a stored web conversation to markdown.
  • Agent tools: webchat_status, webchat_send, webchat_recover, webchat_import, webchat_transfer — the harness agent can chat via the web, inspect transcripts, list workspaces and web conversations, and transfer a conversation into a new or existing session (optionally into a target workspace).
  • Hands-free login: first use opens a visible browser window for login, which auto-closes afterward; chat then runs headless.

Install

From npm (once published)

dsh plugin --profile web add dsh-webchat

From GitHub

dsh plugin --profile web add github:xmuwenxiang/dsh-web-chat

lib/ is committed, so git installs need no build step.

First use

image image
  1. Open the "网页聊天" (Web Chat) sidebar entry in the Web GUI.
  2. Click "打开登录窗口" and sign in to DeepSeek in the browser window that appears.
  3. The window auto-closes after login; you can then chat and transfer normally.

Config

Settings expose: browserChannel (default auto), browserExecutablePath, browserProxy, browserHeadless (chat headless; default true — the login window is always visible and auto-closes), replyTimeoutMs, transferDistill / transferProvider / transferModel (distillation model for transfer), transferMaxTokens (final brief cap, default 4096), and transferChunkTokens (per-chunk cap for long-conversation map-reduce, default 1024).

Requirements

  • Node.js >= 22
  • Google Chrome or Microsoft Edge installed
  • A graphical session for the one-time login window

dsh (host) compatibility

The host half adapts to the settings-section API of the running dsh, and the published lib/ never statically imports names that newer dsh versions removed — so module linking succeeds on every supported generation:

  • dsh ≥ 0.1.2-rc.1 — settings registration moved to SettingsProvider.installSection (the rc.7-era standalone installSettingsSection/settingsNamespace exports were removed); supported.
  • dsh 0.1.0-rc.7 / rc.8 — legacy installSettingsSection API; supported via a runtime fallback, so no behavior change on older hosts.

dsh.client.inject lists only client packages that exist on all supported generations (@deepseek-ai/dsh-client-runtime no longer ships at 0.1.2-rc.1 and is therefore not referenced). The browser half reads sessions/workspaces off the client context, whose provider package changed across generations — if the GUI of a given dsh version does not mount those services, the panel simply does not attach (an error is logged) while host-side tools and routes keep working; it never takes the GUI down.

Limitations

  • The web app is subject to DeepSeek's own risk controls; failures or page changes return errors rather than crashing.
  • Session credentials live in a local private profile directory.

Development

pnpm install
pnpm typecheck   # type-check src/ and test/
pnpm test        # run unit tests (Node built-in test runner)
pnpm build       # emit lib/ (host half) and lib/client.js (browser bundle)

lib/ is committed, so git installs need no build step.

License

Apache-2.0