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.

Conn Dot — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
C

dsh-conn-dot

Conn Dot

Green connection dot beside the DSH sidebar brand mark: merges the runtime WebSocket recovery state with a 30s same-origin liveness probe, so a broken/hung dsh web server turns the dot red.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:afterrealism/dsh-conn-dot#b13eb5c380518fbb86d3a3a9aa0d048860eb7418
READMECompatibilityVersions

Compatibility and provenance

Conn Dot is published as dsh-conn-dot and currently resolves to version 0.1.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/18/2026

Versions

0.1.0stable
9/18/2026

Related plugins

Loading related plugins…

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

Deepseek Idesigndeepseek-idesigniPolloWork Design Studio and its curated design templates as a native DeepSeek Harness conversation view.Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio and its curated slide templates as a native DeepSeek Harness conversation view.Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航 · A Codex-style sidebar, workspace session tree, global search, and turn navigation for DSH WebDream Skindsh-dream-skinDeepSeek Harness 换肤插件(Dream Skin for DSH):8 套 iOS / Linear 式清透冷调的高质感主题 + 弥散光壁纸 + 每皮肤智能背景 + 强调色 + 主题包分享,把换肤做成材质与配色克制的高级感工艺,而非贴图。Works in native DSH Web and third-party desktop clients (DSH Desktop): 8 original premium themes, glass materials, wallpaper 2.0

README

dsh-conn-dot

A green connection dot on the top-left brand mark of the DSH Web GUI — the fish logo beside the product name — showing whether the UI is connected to the dsh web server.

dotmeaning
🟢 greenconnected — WebSocket live and/or probe answered
🟡 amberconnecting / not yet determined
🔴 reddisconnected, or the server stopped answering HTTP

Two signals are merged:

  1. Live socket state — subscribes to ctx.connection.state (the runtime's WebSocket recovery lifecycle: connected / connecting / disconnected).
  2. Background worker — every 30 seconds, a same-origin HEAD / probe. Any HTTP response means the server is alive; a network-level rejection means broken. This catches a hung server whose socket stays half-open.

The dot shadows the sidebar.brand.mark slot at priority −10 and re-renders the official FishLogo, so the logo itself is untouched; hover the dot for status and the time of the last check.

Install (web profile)

npm pack                     # produces dsh-conn-dot-0.1.0.tgz
dsh plugin --profile web add file:/absolute/path/dsh-conn-dot-0.1.0.tgz

Then add "dsh-conn-dot" to dsh.profile.bundles in $DSH_HOME/profiles/web/package.json and restart dsh web.

Test

node --test test/client.test.mjs

中文说明 / Chinese

在 DSH Web GUI 品牌标记(产品名旁边的鱼形图标)左上角显示一个绿色连接状态点, 表示 UI 与 dsh web 服务器的连接状况:

状态点含义
🟢 绿色已连接 — WebSocket 在线且/或探测有响应
🟡 黄色正在连接 / 尚未确定
🔴 红色已断开,或服务器停止响应 HTTP

合并两路信号:① 实时订阅 ctx.connection.state(WebSocket 恢复生命周期); ② 后台每 30 秒发起同源 HEAD / 探测,任何 HTTP 响应都算存活, 网络层失败才算断开——可捕获 socket 半开、服务器假死的情况。 悬停状态点可查看状态与上次检查时间;界面语言为中文时提示自动切换为中文 (依据浏览器语言,zh-* 自动识别)。