DeepSeek Harness 插件

dsh-browser-use

Browser Use bridge for DeepSeek Harness: let your dsh agent run real web tasks (open pages, click, type, fill forms, extract data) through the Browser Use Cloud API.(英文原文)

跳到安装方式

来源信息

GitHub 仓库
zoahdev/dsh-browser-use
最近更新
2026年8月17日
分类
自动化与任务
GitHub stars
0
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/zoahdev/dsh-browser-use
插件名:dsh-browser-use
作者:zoahdev

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

dsh-browser-use

> Browser Use bridge for DeepSeek Harness: let your dsh agent run real web tasks — open pages, click, type, fill forms, extract data — through the Browser Use Cloud API.

![CI](https://github.com/zoahdev/dsh-browser-use/actions) ![License: MIT](LICENSE)

English | [中文](#中文)

What it is

A thin, honest bridge. It registers one model-facing tool, browser_use_run, forwards the task to Browser Use's cloud endpoint, and returns the raw run result. It does not reimplement Browser Use and does not claim to be a full integration.

Install

dsh plugin --profile web add dsh-browser-use

Then set your Browser Use API key (config apiKey, or the BROWSER_USE_API_KEY env var).

Two modes: cloud vs. local

ModeNeedsTools you get
Cloud (this plugin)Browser Use API keybrowser_use_run
Local (free, no key)Python + browser-use installedmcp__browser_use__browser_exec, mcp__browser_use__browser_screenshot

Local mode (no Browser Use API key)

Browser Use also runs locally as an MCP stdio server — no cloud subscription. DeepSeek Harness already ships @deepseek-ai/dsh-mcp-client, so you do not need this plugin for the local path. Install Browser Use once (pip install 'browser-use[cli]'), then add this to your profile's cordis.yml:

- insert:
    - id: browser-use-local
      name: '@deepseek-ai/dsh-mcp-client'
      config:
        serverName: browser_use
        transport: stdio
        command: browser-use
        args: ['--cli-mcp']
        cwd: !!js process.cwd()

That registers mcp__browser_use__browser_exec and mcp__browser_use__browser_screenshot. A ready-to-copy file is in [examples/local-mcp.cordis.yml](examples/local-mcp.cordis.yml).

Tool

ParameterTypeDescription
taskstringThe task, e.g. "Find the stars of the browser-use repo".
modelstringOptional provider-prefixed model id, e.g. openai/gpt-5.5.

Returns { result } — the raw Browser Use run result.

Config

KeyTypeDefaultDescription
apiKeystring(env)Browser Use API key
baseUrlstringhttps://api.browser-use.comCloud API base URL
timeoutMsnumber300000Request timeout
modelstring(none)Default model

Verified

  • pnpm typecheck · pnpm build · pnpm test (4 tests, mocked HTTP).
  • Tested with @deepseek-ai/dsh-tools ^0.1.0-rc.6.

Honest limits

  • This is a cloud-API bridge; it needs a Browser Use API key.
  • Local mode is provided by DeepSeek Harness's own mcp-client, not by this

package; this README documents both so you can pick the cheaper path.

  • It returns the raw response; it does not stream or poll for completion.
  • Community plugin, not an official Browser Use or DeepSeek product.

---

中文

> 给 DeepSeek Harness 的 Browser Use 桥接:让 dsh agent 通过 Browser Use 云 > API 执行真实网页任务(打开页面、点击、输入、填表、抽取数据)。

注册一个 browser_use_run 工具:把任务转发给 Browser Use,返回原始运行结果。 这是薄桥接,不重新实现 Browser Use,也不冒充官方。

dsh plugin --profile web add dsh-browser-use

需要配置 Browser Use API key(apiKey 配置项,或环境变量 BROWSER_USE_API_KEY)。

两种模式:云端 vs. 本地

模式需要得到的工具
云端(本插件)Browser Use API keybrowser_use_run
本地(免费,无需 key)Python + browser-use 已安装mcp__browser_use__browser_execmcp__browser_use__browser_screenshot

本地模式(无需 Browser Use API key)

Browser Use 也能以本地 MCP stdio 服务运行,无需云订阅。DeepSeek Harness 已经内置 @deepseek-ai/dsh-mcp-client,所以本地路径不需要本插件。先安装一次 Browser Use(pip install 'browser-use[cli]'),然后把你 profile 的 cordis.yml 加上:

- insert:
    - id: browser-use-local
      name: '@deepseek-ai/dsh-mcp-client'
      config:
        serverName: browser_use
        transport: stdio
        command: browser-use
        args: ['--cli-mcp']
        cwd: !!js process.cwd()

这会注册 mcp__browser_use__browser_execmcp__browser_use__browser_screenshot。现成可复制的文件在 [examples/local-mcp.cordis.yml](examples/local-mcp.cordis.yml)。