返回顶部
a

agent-browser-stealth

Stealth-first browser automation for OpenClaw using agent-browser-stealth. Use when tasks involve bot-protected websites, anti-fingerprint evasion, captcha-prone flows, login persistence, region-sensitive targets (e.g., Shopee/TikTok/e-commerce), or any request to automate web actions with lower detection risk.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.2
安全检测
已通过
554
下载量
0
收藏
概述
安装方式
版本历史

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-browser` CLI from `agent-browser-stealth` package - 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 ```bash 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 ```bash agent-browser open <url> 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 1. Prefer headed mode for sensitive targets: ```bash agent-browser --headed --session-name shop open https://example.com ``` 2. Reuse session state to avoid repeated cold-start fingerprints: ```bash agent-browser --session-name shop open https://example.com ``` 3. Keep interactions human-like: ```bash agent-browser type @e2 "query" --delay 120 agent-browser wait 1200-2600 ``` 4. For contenteditable editors, use keyboard mode: ```bash agent-browser click "[contenteditable='true']" agent-browser keyboard type "Hello world" --delay 90 ``` 5. If text must literally include `--delay`, stop arg parsing with `--`: ```bash 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. ```bash agent-browser open https://shopee.tw ``` Only override locale/timezone when explicitly required by the task. ## Recovery patterns If blocked or unstable: 1. Retry with `--headed`. 2. Reuse `--session-name`. 3. Slow down action cadence (`wait`, `type --delay`). 4. Re-open page and regenerate refs with `snapshot -i`. ## Minimal recipes Login flow: ```bash 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: ```bash 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

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 agent-browser-stealth-1775976541 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 agent-browser-stealth-1775976541 技能

通过命令行安装

skillhub install agent-browser-stealth-1775976541

下载 Zip 包

⬇ 下载 agent-browser-stealth v1.0.2

文件大小: 2.12 KB | 发布时间: 2026-4-13 09:09

v1.0.2 最新 2026-4-13 09:09
- Updated SKILL.md to clarify how the CLI locates the browser in default CDP mode, describing its first attempt at localhost:9333 and fallback to auto-discovery.
- Improved installation instructions for environments using default CDP mode.
- No changes to code or functionality; documentation update only.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部