DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

dsh-plugin-browser-use

Plugin Browser Use

DeepSeek Harness (dsh) 的浏览器自动化工具:通过 playwright-core 使用 Chromium,并采用以安全为先的导航策略,在每次操作时重新检查

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add dsh-plugin-browser-use@0.3.1
README兼容性版本

兼容性与来源证明

Plugin Browser Use 以 dsh-plugin-browser-use 发布,当前版本为 0.3.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.3.1stable
2026/8/15
0.3.0stable
2026/8/15
0.2.1stable
2026/8/15
查看其余 1 个版本收起版本
0.2.0stable
2026/8/15

相关插件

正在加载相关插件…

最新版
0.3.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
201.9 kB
文件数
20
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
200
安全扫描
✓ v0.3.1 扫描通过
最近提交
2026/8/15
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
Plugin Browser Use — DeepSeek Harness 插件(DSH Plugin)

相关插件

继续浏览 search-research 分类下经过校验的插件。

Browser Skill Dsh Plugin@wxg-prc-cpg/browser-skill-dsh-plugin向模型提供 BrowserSkill 浏览器自动化(browser_* 工具)的 DeepSeek Harness 工具插件Weknora@wxg-prc-cpg/dsh-weknora适用于 DeepSeek Harness (dsh) 的 WeKnora 知识检索工具:通过自有知识库进行语义搜索、文档阅读以及 RAG/代理回答。Free Searchdsh-free-searchDeepSeek Harness 的免费网页搜索:13 个引擎(Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable/Firecrawl 无需密钥;Parallel/Perplexity/SerpBase/DeepSeek 需要密钥),支持时间筛选、平台搜索和 web_fetch,并提供网页设置界面。Find Plugindsh-find-plugin在代理中查找 DeepSeek Harness 插件——实时搜索 GitHub 上的 dsh-plugin 主题,并按星标数排序。

README

dsh-plugin-browser-use — a real browser for the DeepSeek Harness, fenced by a security-first policy

Install · Tools · Security model · Configuration · 中文文档

A DeepSeek Harness plugin that gives the model a real browser — navigate, click, fill, read, screenshot, tabs, downloads — backed by Chromium through playwright-core.

Its differentiator is a security-first design: every URL is re-checked against a host-label allowlist and a private-network block on every action and again after every navigation — including redirects, link clicks, popups, background loads, and downloads. And no tool ever accepts a filesystem path from the model: every file the plugin writes lands in a constrained directory under a name the plugin picked itself.

Install

dsh plugin --profile web add dsh-plugin-browser-use
dsh --profile web --dump-config   # should show the "# == dsh-plugin-browser-use" layer

A Chromium is required. The plugin resolves one in this order:

  1. executablePath config
  2. $DSH_BROWSER_EXECUTABLE
  3. Well-known OS locations (Chrome / Chromium / Edge / Brave)
  4. Playwright's own browser resolution (npx playwright install chromium)

Configuration

keytypedefaultmeaning
allowedHostsstring[][]Host-label allowlist. example.com matches and ; matching is on host labels, never substrings. Empty = any public host.
example.com
*.example.com
allowPrivateNetworkbooleanfalsePermit loopback / private / link-local targets. Off by default.
headlessbooleantrueRun without a window.
executablePathstring—Explicit Chromium binary. Falls back to $DSH_BROWSER_EXECUTABLE, OS locations, then Playwright.
userAgentstringdsh-plugin-browser-use/<version>User-Agent for the browser context.
proxyServerstring—Proxy for browser traffic (e.g. http://127.0.0.1:7890, socks5://…). Chromium ignores $http_proxy-style env, so set this (or $DSH_BROWSER_PROXY) on machines that need a proxy.
proxyBypassstring—Comma-separated hosts that bypass the proxy.
navigationTimeoutMsint ≥ 130000Page-load budget per navigation.
actionTimeoutMsint ≥ 115000Budget per click / fill / read / screenshot.
maxTextCharsint ≥ 120000Hard bound on extracted page text and snapshots.
artifactsDirstringprivate temp dirWhere screenshots / PDFs / downloads land. The plugin names every file itself.
storageStatePathstring—Persist cookies/localStorage here on close, load at launch. The file holds live credentials — protect it. Last close wins across agents.
uploadsDirstring— (uploads disabled)Only files directly inside this directory can be uploaded, by bare filename.

The tools

toolmodel-facing result
browser_navigate{ url, title, statusCode, text, truncated } of the landed page
browser_navigate_background{ jobId, index, url } — loads in a new unfocused tab as a background job
browser_click{ url, title, text, truncated } after the click's navigation settles
browser_fill{ url, title } after filling a field
browser_read_text{ url, title, text, truncated } re-read of the current page
browser_read_snapshot{ url, title, snapshot, truncated } — aria role/name outline, selector-stable
browser_screenshot{ path, url, title } — PNG under artifactsDir, plugin-named
browser_pdf{ path, url, title } — PDF under artifactsDir (headless only)
browser_downloads{ downloads: [{ index, url, suggestedFilename, state, path?, error? }] }
browser_upload{ url, title } — attach a file from uploadsDir to an <input type=file>
browser_tab_new{ index, url, title, statusCode? } — new active tab, policy-checked before creation
browser_tab_list{ tabs: [{ index, active, url, allowed, title? }] }
browser_tab_select{ index, url, title } — off-policy tabs cannot be focused
browser_tab_close{ closed: true, remaining }
browser_close{ closed: true } — closes the whole browser, idempotent

Each agent session owns an isolated browser with an ordered tab list; calls from one owner are serialized in submission order (browser_navigate_background is the deliberate exception — its load runs outside the queue). All failures surface as ordinary isError tool results with a BROWSER_* code (never a thrown exception), e.g. BROWSER_HOST_NOT_ALLOWED, BROWSER_PRIVATE_NETWORK, BROWSER_NO_PAGE, BROWSER_NO_SUCH_TAB, BROWSER_UPLOAD_NOT_ALLOWED, BROWSER_JOBS_UNAVAILABLE, BROWSER_NAVIGATION_FAILED, BROWSER_ACTION_FAILED, BROWSER_LAUNCH_FAILED, BROWSER_CLOSED, BROWSER_ABORTED, BROWSER_UNSUPPORTED_SCHEME, BROWSER_INVALID_URL.

Background loads need the jobs registry (@deepseek-ai/dsh-jobs + @deepseek-ai/dsh-tool-jobs) in the profile; without it the tool fails closed with BROWSER_JOBS_UNAVAILABLE. Jobs register under kind browser.

Security model

The policy loop: checked before every action, re-checked after every landing; refusals never reach the model

  • Continuous re-check. The policy runs before every action, and again after every navigation — browser_navigate checks the landed URL, so a redirect (or a link click) that crosses into a disallowed host is refused even when the requested URL was allowed. Background loads get the same pre-flight and post-landing checks.
  • Host-label matching, never substrings. allowedHosts: ["example.com"] matches example.com and sub.example.com but not evil-example.com or evil.example.com.attacker.test.
  • Private networks blocked by default. Loopback, private, link-local, unique-local, and IPv4-mapped spellings (127.0.0.1, 10.0.0.5, ::1, ::ffff:127.0.0.1, fc00::/7 hex forms, …) are refused unless allowPrivateNetwork is explicitly enabled — and when an allowlist is set, private hosts must be on it too.
  • Canonical host comparison. Case, trailing dots, and IPv6 brackets are normalized before comparison; anything unparseable fails closed.
  • Scheme restriction. Only http: and https: navigate; file:, data:, javascript:, and other schemes are refused outright.
  • No model-controlled paths, ever. Screenshots, PDFs, and downloads are written only into artifactsDir under names the plugin builds (download filenames are sanitized to one safe path segment). Uploads accept only a bare filename directly inside the operator-configured uploadsDir — separators and .. are refused, and without that config the tool is disabled.
  • Popups can't smuggle. Pages the browser opens on its own join the tab list but never take focus; an off-policy popup can be listed and closed, never focused, read, or captured — its title is not even fetched.
  • Downloads are policy-checked too. A download from a refused URL is recorded as refused and never written to disk.
  • A contained browser process. Each launch gets a private HOME/XDG tree under the OS temp dir (removed on close), so profile, crashpad, and caches never touch the operator's real home.
  • Honest residual: DNS rebinding is not defended. A hostname that resolves from public to private IPs between the check and the connection can still reach internal services. Likewise, a redirect into a refused host is blocked from the model, but the request that discovered the redirect has already been sent by the browser. If either matters in your environment, run the harness in a network-isolated sandbox; do not rely on this plugin alone.

Model Experience

What the model sees: fifteen browser_* tool names; navigation and reads return the landed URL, title, HTTP status (navigation only), and bounded visible text or an aria outline. Screenshots/PDFs return paths, not image payloads — pair with an attachment-capable setup to show them to a vision model.

Token effect: each navigate / read / snapshot returns up to maxTextChars (default 20,000) characters; shrink it for cheaper sessions, grow it for dense pages. Click returns a fresh reading; fill, tab, and artifact tools return only small fixed shapes.

KV cache effect: none — results are ordinary tool results appended to the conversation; nothing rewrites the prompt prefix.

Known limitations and deferred work

  • DNS rebinding not defended; refused redirects still cost one outbound request (see Security model).
  • Screenshots/PDFs are saved as files, not returned as image content — wiring them into ctx.attachments for vision models is future work.
  • Cookie persistence is a single storage-state file: last close wins across concurrent agents.
  • Playwright's goto cannot be interrupted mid-flight: cancelling a background job marks it and the navigation timeout bounds settlement.
  • playwright-core needs a browser binary present (see Install).
  • dsh is a developer preview; expect lockstep peer-version bumps.

Development

npm install
npm run build    # tsc → lib/
npm test         # vitest run (96 tests; live smoke self-skips)

The live smoke suite runs a real Chromium when DSH_BROWSER_LIVE=1 and a browser resolves (set DSH_BROWSER_EXECUTABLE to pin one):

DSH_BROWSER_LIVE=1 npm test

Layout: src/policy.ts (pure URL policy) → src/session.ts (browser session: tabs, artifacts, downloads, per-action re-checks) → src/tool.ts (dsh tool definitions, owner registry) → src/index.ts (plugin entry). CI runs typecheck + the keyless suite on Node 22/24.

License

MIT

Non-affiliation

This project is not affiliated with the browser-use project or company. Under the hood it drives Chromium directly through playwright-core; no browser-use code is involved.