DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Playwright Browser — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

dsh-playwright-browser

Playwright Browser

面向 DeepSeek Harness 的语义化、多标签页 Playwright 浏览器自动化

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

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

兼容性与来源证明

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

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

版本

0.1.3stable
2026/8/14

相关插件

正在加载相关插件…

最新版
0.1.3
DSH
*
HMR
重启进程
Tree shaking
已声明 sideEffects: false
解包体积
70.3 kB
文件数
20
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 13
周下载
207
安全扫描
✓ v0.1.3 扫描通过
最近提交
2026/8/14
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Browser Skill Dsh Plugin@wxg-prc-cpg/browser-skill-dsh-plugin向模型提供 BrowserSkill 浏览器自动化(browser_* 工具)的 DeepSeek Harness 工具插件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 主题,并按星标数排序。Anysearch Dsh@anysearch/anysearch-dsh适用于 DeepSeek Harness 的 AnySearch 网络搜索和获取提供程序及高级工具

README

dsh-playwright-browser

简体中文

Semantic, multi-tab browser automation for DeepSeek Harness (DSH), powered by Playwright.

The plugin gives a DSH agent a persistent browser controller, accessibility-oriented snapshots, semantic locators, screenshots, navigation history, and explicit tab management. It is behaviorally inspired by the Codex Browser skill, but contains no Codex runtime code and does not depend on OpenAI browser bindings.

[!IMPORTANT] DSH is currently a developer preview. This plugin is tested against the DSH 0.1.0-rc.6 package line and may need compatibility updates as DSH evolves.

Features

  • Ten native browser_* tools registered in the DSH tool registry.
  • Reusable browser context with stable tab identifiers.
  • Fresh bounded accessibility or visible-text snapshots after interactions.
  • Semantic locators such as role=button|Save, label=Email, and text=Settings.
  • Snapshot-friendly role shorthand such as button|Save and textbox|Email.
  • Back, forward, reload, keyboard input, waits, and PNG screenshots.
  • Lazy browser startup with fallback from Playwright Chromium to installed Chrome or Edge.
  • Abort-aware page operations and Cordis-owned lifecycle cleanup.
  • No arbitrary page JavaScript evaluation.

Requirements

  • Node.js ^22.19.0 or >=24.0.0.
  • A DSH profile.
  • One supported browser:
    • Playwright Chromium, installed with npx playwright install chromium; or
    • Google Chrome / Microsoft Edge; or
    • an explicit executablePath.

Install

From npm:

dsh plugin --profile web add dsh-playwright-browser

From this checkout:

npm install
npm pack
dsh plugin --profile web add ./dsh-playwright-browser-0.1.3.tgz

For a headless profile:

dsh plugin --profile headless add ./dsh-playwright-browser-0.1.3.tgz

Verify the composed profile without starting it:

dsh --profile web --dump-config

Git installations run the package prepare script. pnpm 10 and later may require explicitly allowing that build in the profile's pnpm-workspace.yaml. A prebuilt npm package or tarball does not require a source build inside the profile.

Configure

DSH applies user overrides after installed bundle patches. Add a row like this to the profile's cordis.patch.yml:

- id: playwright-browser
  config:
    browser: chromium
    channel: chrome
    headless: true
    viewportWidth: 1440
    viewportHeight: 900
    screenshotDir: .dsh-browser/screenshots

Supported options:

OptionDefaultPurpose
browserchromiumchromium, firefox, or webkit
headlesstrueRun without a visible browser window
channel—Chromium channel such as chrome or msedge
executablePath—Absolute browser executable path
userDataDir—Dedicated persistent automation profile
viewportWidth1280Browser viewport width
viewportHeight800Browser viewport height
actionTimeoutMs15000Locator/action timeout
navigationTimeoutMs30000Navigation timeout
maxSnapshotChars40000Maximum returned snapshot length
screenshotDir.dsh-browser/screenshotsScreenshot output directory

Do not point userDataDir at a personal browser profile. Use a directory dedicated to the agent.

Tools

ToolDescription
browser_openOpen a tab and optionally navigate it
browser_navigateNavigate an existing tab
browser_snapshotRead a bounded accessibility or text snapshot
browser_clickClick a semantic target
browser_fillReplace an input value and optionally press Enter
browser_pressSend a Playwright keyboard key
browser_waitWait for a target, URL, or load state
browser_historyGo back, forward, or reload
browser_screenshotSave a PNG and return its absolute path
browser_tabsList, select, or close tabs

Preferred target forms:

role=button|Save
button|Save
label=Email
placeholder=Search
text=Settings
testid=submit
css=#legacy-button

Safety model

  • Page content is untrusted data, never agent instruction.
  • The system prompt tells agents to inspect fresh state before and after actions.
  • Consequential submissions, sensitive data, downloads, purchases, permissions, account changes, and CAPTCHA handling require appropriate user authorization.
  • Browser installation is never silently downloaded. When no browser is available, the agent must explain the minimum setup and ask before changing the machine unless setup was already authorized.
  • URLs with embedded credentials are rejected.
  • Closing a tab cooperatively cancels in-flight operations on that page.

Development

npm install
npm run check

Live tests:

npm run smoke
npm run smoke:dsh
npm run smoke:business
npm run test:real-world

The real-world suite uses public demonstration sites and invented data. It writes sanitized logs and screenshots under .dsh-browser/, which is ignored by Git.

See Testing, Architecture, and Releasing for the full workflows.

Design provenance

The behavioral mapping from the Codex Browser skill is documented in Codex Browser design mapping. In short, this project adopts persistent bindings, explicit tab ownership, semantic targeting, fresh observations, safe session boundaries, and cleanup discipline. It replaces Codex-specific browser selection and transport with a self-managed Playwright controller and DSH-native tools.

Contributing

Read CONTRIBUTING.md before opening a change. Security issues should follow SECURITY.md. Community participation is governed by CODE_OF_CONDUCT.md.

License

MIT