/install browser-automation-skill
Browser Relay
Use this skill when the user wants real browser control through the local Browser Relay runtime.
This skill is a thin wrapper around the published npm package:
- npm package:
browser-relay-cli - GitHub repo:
https://github.com/jasonCodeSpace/browser-relay
Use this skill when
- The user wants to control an already signed-in Chrome session
- The task requires opening pages, reusing tabs, clicking, typing, hovering, scrolling, or screenshots
- DOM selectors are unreliable and a screenshot-guided click is more appropriate
- The user wants a local browser relay instead of a hosted browser
Do not use this skill when
- The user asks to bypass CAPTCHA or anti-bot systems
- The task requires stealth automation or hiding browser control
- The user only needs plain web search or static scraping
Workflow
1. Make sure the runtime is available
Use npx, not a local repo path, unless the user explicitly wants development mode.
Quick checks:
npx browser-relay-cli version
npx browser-relay-cli extension-path
2. Start the relay
npx browser-relay-cli relay-start
3. Make sure the extension is loaded
Tell the user to:
- Open
chrome://extensions - Enable
Developer mode - Click
Load unpacked - Select the directory printed by
npx browser-relay-cli extension-path
Then verify:
npx browser-relay-cli status
You want extensionConnected: true.
4. Operate the browser
Prefer DOM-first commands:
npx browser-relay-cli list-tabs
npx browser-relay-cli create-tab https://example.com
npx browser-relay-cli click 123456 'button'
npx browser-relay-cli type 123456 'input[name=\"q\"]' 'browser relay'
npx browser-relay-cli press 123456 Enter
npx browser-relay-cli scroll 123456 800
For DOM-hostile pages, switch to hybrid mode:
screenshotdescribe-visibleclick-atorclick-at-norm
5. Prefer tab reuse
- Reuse existing relay tabs whenever possible
- Avoid opening unnecessary new tabs
- Use screenshot-guided clicks only when selector-based actions are unreliable
Key commands
Read references/commands.md when you need the compact command catalog.
Safety rules
- Do not instruct Browser Relay to bypass CAPTCHA or anti-bot challenges
- Do not claim Browser Relay is stealthy
- Do not save tokens,
.envfiles, or local private credentials in the skill folder - Keep this skill focused on the published runtime and extension workflow
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install browser-automation-skill - 安装完成后,直接呼叫该 Skill 的名称或使用
/browser-automation-skill触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Browser Automation 是什么?
Use Browser Relay when the user wants to control a real signed-in Chrome or Chromium browser through the published browser-relay-cli package and unpacked Bro... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 85 次。
如何安装 Browser Automation?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install browser-automation-skill」即可一键安装,无需额外配置。
Browser Automation 是免费的吗?
是的,Browser Automation 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Browser Automation 支持哪些平台?
Browser Automation 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Browser Automation?
由 Jason(@jasoncodespace)开发并维护,当前版本 v1.0.0。