/install agent-browser-stealth
agent-browser-stealth for OpenClaw
Use this skill when the task needs web automation and anti-bot stability.
What this skill prioritizes
- Use
agent-browserCLI fromagent-browser-stealthpackage - Prefer stealth-safe interaction patterns over brittle one-shot scripts
- Keep command flow deterministic:
open -> snapshot -> act -> re-snapshot - Minimize bot signals with humanized pacing and stable session reuse
Install and baseline
pnpm add -g agent-browser-stealth
agent-browser install
agent-browser --version
If default CDP mode is used in your environment, the CLI first tries localhost:9333 and then auto-discovery. You can still pass --cdp / --auto-connect explicitly when needed.
Standard execution workflow
agent-browser open \x3Curl>
agent-browser wait --load networkidle
agent-browser snapshot -i
# choose refs (@e1, @e2, ...)
agent-browser click @eN
agent-browser fill @eM "..."
agent-browser snapshot -i
Use refs (@e1) from snapshot output whenever possible.
Anti-bot operating rules
- Prefer headed mode for sensitive targets:
agent-browser --headed --session-name shop open https://example.com
- Reuse session state to avoid repeated cold-start fingerprints:
agent-browser --session-name shop open https://example.com
- Keep interactions human-like:
agent-browser type @e2 "query" --delay 120
agent-browser wait 1200-2600
- For contenteditable editors, use keyboard mode:
agent-browser click "[contenteditable='true']"
agent-browser keyboard type "Hello world" --delay 90
- If text must literally include
--delay, stop arg parsing with--:
agent-browser type @e2 -- "--delay 120"
agent-browser keyboard type -- "--delay 120"
Region-sensitive websites
For region-bound sites, open target domain directly and let locale/timezone alignment apply.
agent-browser open https://shopee.tw
Only override locale/timezone when explicitly required by the task.
Recovery patterns
If blocked or unstable:
- Retry with
--headed. - Reuse
--session-name. - Slow down action cadence (
wait,type --delay). - Re-open page and regenerate refs with
snapshot -i.
Minimal recipes
Login flow:
agent-browser --session-name account open https://example.com/login
agent-browser snapshot -i
agent-browser fill @e1 "$USERNAME"
agent-browser fill @e2 "$PASSWORD"
agent-browser click @e3
agent-browser wait --url "**/dashboard"
Search and capture:
agent-browser open https://example.com
agent-browser snapshot -i
agent-browser type @e2 "iphone" --delay 120
agent-browser press Enter
agent-browser wait --load networkidle
agent-browser screenshot result.png
Output expectations for OpenClaw
When using this skill, return:
- Exact commands executed
- Key page state changes (URL/title/important element text)
- Any anti-bot signal encountered and mitigation used
- Next safe action
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agent-browser-stealth - 安装完成后,直接呼叫该 Skill 的名称或使用
/agent-browser-stealth触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Agent Browser Stealth 是什么?
Stealth-first browser automation for OpenClaw using agent-browser-stealth. Use when tasks involve bot-protected websites, anti-fingerprint evasion, captcha-p... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 651 次。
如何安装 Agent Browser Stealth?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-browser-stealth」即可一键安装,无需额外配置。
Agent Browser Stealth 是免费的吗?
是的,Agent Browser Stealth 完全免费(开源免费),可自由下载、安装和使用。
Agent Browser Stealth 支持哪些平台?
Agent Browser Stealth 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agent Browser Stealth?
由 郭立lee(@leeguooooo)开发并维护,当前版本 v1.0.2。