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.

Deepseek Chat — DSH Plugin for DeepSeek Harness
← Plugins
D

@coldcgh/dsh-deepseek-chat

Deepseek Chat

Web chat entry for DeepSeek Harness (dsh plugin): a sidebar button (right below New Session) that opens chat.deepseek.com in a dedicated desktop window when running under dsh-desktop (Wails bridge), falling back to in-webview navigation in plain web environments

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

npx -y @deepseek-ai/dsh plugin --profile web add @coldcgh/dsh-deepseek-chat@0.3.0
READMECompatibilityVersions

Compatibility and provenance

Deepseek Chat is published as @coldcgh/dsh-deepseek-chat and currently resolves to version 0.3.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

0.3.0stable
8/21/2026

Related plugins

Loading related plugins…

Latest
0.3.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
50.7 kB
Files
6
Surface
web
License
MIT
Source
npm
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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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

@coldcgh/dsh-deepseek-chat

DeepSeek Harness 网页对话入口插件 —— 在侧边栏"新对话"按钮正下方显示一个"网页对话"按钮,点击打开 chat.deepseek.com。

✨ 特性

  • 位置自然:按钮位于侧边栏新对话按钮正下方,宽度/高度/悬停动效与 harness 原生控件完全一致,展开态显示「网页对话」,收起态为 36px 图标(响应即时,无轮询延迟)
  • 桌面独立窗口:在 dsh-desktop(Wails v3 启动器)下运行时,点击按钮通过本地桥接 API(127.0.0.1 随机端口 + 每实例随机 token)让启动器打开独立聊天子窗口——主窗口(harness 页面)不再被导航霸占,可同时多任务
  • Web 环境降级:纯浏览器 / 第三方桌面壳(无 window.__DSH_DESKTOP_API__ 桥接)时自动降级为原行为(当前 webview 内跳转),插件功能永不失效
  • 持久化开关:设置页可开关入口(dsh-deepseek-chat.showEntry,默认开)

📦 安装

# 方式一:npm 官方安装(推荐)
dsh plugin --profile web add @coldcgh/dsh-deepseek-chat

# 方式二:Gitee Release tgz(无 npm registry 时)
# https://gitee.com/coldcgh/dsh-deepseek-chat/releases/download/0.3.0/coldcgh-dsh-deepseek-chat-0.3.0.tgz
curl -L -o dsh-deepseek-chat.tgz https://gitee.com/coldcgh/dsh-deepseek-chat/releases/download/0.3.0/coldcgh-dsh-deepseek-chat-0.3.0.tgz
dsh plugin --profile web add ./dsh-deepseek-chat.tgz

# 方式三:从源码构建安装(开发测试)
cd dsh-deepseek-chat && npm pack
dsh plugin --profile web add ./coldcgh-dsh-deepseek-chat-0.3.0.tgz

重启 harness 后,侧边栏"新对话"按钮正下方出现「网页对话」按钮。

🖥️ 桌面桥接协议(可选增强)

dsh-desktop 会在 harness 页面注入:

window.__DSH_DESKTOP_API__ = "http://127.0.0.1:<port>/<token>"

按钮点击时:

fetch(window.__DSH_DESKTOP_API__ + "/window/chat", { method: "POST" })
  • 无桥接(纯 web)→ 直接在当前 webview 导航(降级)
  • 桥接失败(启动器已退出)→ 回退导航

token 为每实例随机生成,仅本机 loopback 可用,带 CORS 校验与 token 鉴权。

📁 结构

lib/index.js     server 端:settings 注册(showEntry 开关,ctx 由宿主注入)
lib/client.js    client 端:侧边栏入口按钮 + 布局/降级逻辑(编译产物)
cordis.patch.yml bundle patch:把插件加入 web roster

当前分发编译产物;源文件(tsx)与构建脚本在后续版本补齐(tsdown 构建)。

🔧 开发

npm pack          # 构建本地 tgz
dsh plugin --profile web add ./coldcgh-dsh-deepseek-chat-0.3.0.tgz

📝 License

MIT © caoganghui