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.

Live Room — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-live-room

Live Room

dsh plugin: Turn sessions into authentication-free, read-only, shareable real-time livestream rooms (SSE viewing page + live comments)

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-live-room@0.1.1
READMECompatibilityVersions

Compatibility and provenance

Live Room is published as dsh-live-room and currently resolves to version 0.1.1. 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/30/2026

Versions

0.1.1stable
8/30/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
163.7 kB
Files
20
Surface
web
License
BSD-3-Clause
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
8/30/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 integrations-communication.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseIm@xmanrui/dsh-im把十一种 IM 渠道和公网 AI Office 接入本机 DeepSeek Harness。 Connect eleven IM channels and a public AI Office to a local DeepSeek Harness.DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Im Connect@michengai/dsh-im-connectDeepSeek Harness IM assistant: connect a local agent to WeChat, WeCom, DingTalk, Feishu, QQ, and Telegram, with conversations and web tasks separated.

README

dsh-live-room · 会话直播间

dsh(DeepSeek Harness)插件:把任意会话变成免登录、只读、可分享的实时观看页。观众在浏览器里实时围观 agent 干活(打字机式 token 流、工具调用状态、思考过程),可发轻量弹幕;主播端一键开播/停播,也支持让 agent 自己开播。

功能

  • 设置页「直播间」面板:选择会话开播(可自定义标题与 TTL),房间卡片展示观众数、缓冲条数、过期时间,一键复制本机/局域网观看链接,随时停播
  • 观看页:自包含单文件页面(无外部依赖),SSE 实时推送 + 全量快照(断线自动重连),token 打字机、思考流(暗色折叠样式)、工具调用行(运行中/完成/出错)、轮次分隔;弹幕飞屏 + 快捷表情
  • agent 工具三件套:start_live_room / stop_live_room / list_live_rooms,会话里一句"帮我把这个任务直播给同事看"即可
  • 归一化协议:宿主 ~50 种会话事件 + 持久层 chunk-run 打包行统一归一为 6 种观看帧,未知事件降级为提示行,永不崩页

安装

dsh plugin --profile web add dsh-live-room

或从源码:pnpm build 后 dsh plugin --profile web add <本目录路径>。

安全模型(必读)

  • 观看链接免登录、凭链接即看:任何拿到链接的人(同一局域网)都能实时看到该会话的完整内容,请只发给可信观众
  • 房间密钥为 24 字节随机值(SHA-256 + timingSafeEqual 校验),停播/过期立即失效
  • 观看页构造上只读:不含任何会话写路径;弹幕仅在观看层广播,不会进入会话
  • 观看服务首房自动启动、末房自动停,最小暴露窗口;绑定了独立端口(默认 0.0.0.0:33210),可在插件配置里把 host 改为 127.0.0.1 收紧到本机
  • 直播间为内存态:dsh 重启后自动清空;Windows 首次监听会弹防火墙授权

配置项

键默认说明
port33210观看服务端口
host0.0.0.0监听地址(改 127.0.0.1 仅本机可看)
maxFrames2000每房间环形缓冲上限(按事件数)
snapshotMaxEvents500建房时回填持久化历史的末尾事件数
defaultTtlHours8房间默认存活时长
allowReactionstrue是否开放弹幕
reactionCooldownMs2000同 IP 两条弹幕最小间隔

架构

宿主进程内 dsh-live-room
├─ ctx.on('session/event', …, { global: true })   ← 数据源(post-commit 免轮询)
│    └─ RoomManager(环形缓冲 · seq 去重 · callId→工具名补全 · TTL)
├─ 独立观看服务 node:http(SSE:hello → snapshot → live/viewers/chat/ended)
├─ 管理 API /live-room/api(宿主主服务同源前缀,POST 双重防御)
├─ 设置页面板(settings.section 槽位 · order 62 · React 壳 + 原生 DOM)
└─ agent 工具三件套

开发

DSH_CHECKOUT=<dsh checkout 路径> npm run typecheck
DSH_CHECKOUT=<dsh checkout 路径> npm test
DSH_CHECKOUT=<dsh checkout 路径> npm run build
node scripts/verify-live-room.mjs --base http://127.0.0.1:3080 --token <启动 token>

License

BSD-3-Clause