DeepSeek Harness plugin

dsh-web-auto-open

dsh plugin: auto-open the default browser as soon as the dsh web GUI server is listening — one-step startup for `dsh web`

Jump to install

Source facts

Repository
ChengChe106/dsh-web-auto-open
Latest update
Aug 14, 2026
Category
Tools & Capabilities
GitHub stars
2
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/ChengChe106/dsh-web-auto-open
Plugin: dsh-web-auto-open
Author: ChengChe106

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

dsh-web-auto-open

DSH(DeepSeek Harness)Web 一键启动插件:运行 dsh web,浏览器自动打开

GitHub · npm · dsh-plugin topic

有什么用

DeepSeek Harness 的 Web 界面默认需要两步:先在终端启动服务器,再手动打开浏览器输入 http://127.0.0.1:3080

装了这个插件后,启动只需一步:

npx @deepseek-ai/dsh web

服务器一监听成功,插件会自动用系统默认浏览器打开 Web 界面——不用复制网址、不用额外脚本、不用记端口。

  • 支持 Windows / macOS / Linux
  • 服务器端口为 0(系统随机分配)时也能拿到真实端口并正确打开

安装(推荐 npm)

dsh plugin add dsh-web-auto-open

如果 dsh 没有全局安装,用 npx 方式执行:

npx --yes @deepseek-ai/dsh plugin --profile web add dsh-web-auto-open

如何启用

插件声明为 profile bundle,安装后下一次启动 dsh web 即自动生效,无需任何额外配置。

验证是否已生效:

dsh --profile web --dump-config
# 输出中应包含以下片段:
# - id: web-open
#   name: dsh-web-auto-open

可选配置

~/.dsh/profiles/web/cordis.patch.yml 里覆盖 web-open 行即可:

- id: web-open
  config:
    autoOpen: false   # 关闭自动打开
    delayMs: 1000     # 服务器就绪后再延时 1 秒打开浏览器

原理

  • 插件声明 inject: ["webServer"],等 Loader 全部启动完成后读取 webServer.port(监听成功后才赋值)
  • 通过官方 @deepseek-ai/dsh-native-command 调用系统命令打开浏览器:

Windows cmd /c start / macOS open / Linux xdg-open

  • 与官方 dsh-web-app 打印 URL 用的是同一套就绪判定习惯,安全可靠

开发者

  • 仓库:https://github.com/ChengChe106/dsh-web-auto-open (欢迎 Star / Issue)
  • 发布新版本:npm version patch && npm publish && git push --tags
  • 协议:MIT