From sundial-org-awesome-openclaw-skills-4
Automates browsers with a Rust-based engine for fast DOM extraction, session management, and human emulation to bypass bot detection.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:fast-browser-useThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A Rust-based browser automation engine that provides a lightweight binary driving Chrome directly via CDP. It is optimized for token-efficient DOM extraction, robust session management, and speed.
CODEBUDDY.mdCargo.tomlREADME.mdpackage-lock.jsonpackage.jsonrustfmt.tomlsrc/bin/cli.rssrc/bin/mcp_server.rssrc/browser/config.rssrc/browser/debug.rssrc/browser/mod.rssrc/browser/session.rssrc/dom/element.rssrc/dom/extract_dom.jssrc/dom/mod.rssrc/dom/tree.rssrc/dom/yaml.rssrc/error.rssrc/lib.rssrc/mcp/handler.rsA Rust-based browser automation engine that provides a lightweight binary driving Chrome directly via CDP. It is optimized for token-efficient DOM extraction, robust session management, and speed.
Simulate mouse jitter and random delays to scrape protected sites.
fast-browser-use navigate --url "https://protected-site.com" \
--human-emulation \
--wait-for-selector "#content"
Capture the entire DOM state and computed styles for perfect reconstruction later.
fast-browser-use snapshot --include-styles --output state.json
Log in manually once, then steal the session for headless automation.
Step 1: Open non-headless for manual login
fast-browser-use login --url "https://github.com/login" --save-session ./auth.json
Step 2: Reuse session later
fast-browser-use navigate --url "https://github.com/dashboard" --load-session ./auth.json
Extract fresh data from infinite-scroll pages — perfect for harvesting the latest posts, news, or social feeds.
# Harvest headlines from Hacker News (scrolls 3x, waits 800ms between)
fast-browser-use harvest \
--url "https://news.ycombinator.com" \
--selector ".titleline a" \
--scrolls 3 \
--delay 800 \
--output headlines.json
Real output (59 unique items in ~6 seconds):
[
"Genode OS is a tool kit for building highly secure special-purpose OS",
"Mobile carriers can get your GPS location",
"Students using \"humanizer\" programs to beat accusations of cheating with AI",
"Finland to end \"uncontrolled human experiment\" with ban on youth social media",
...
]
Works on any infinite scroll page: Reddit, Twitter, LinkedIn feeds, search results, etc.
Capture any page as PNG:
fast-browser-use screenshot \
--url "https://example.com" \
--output page.png \
--full-page # Optional: capture entire scrollable page
| Feature | Fast Browser Use (Rust) | Puppeteer (Node) | Selenium (Java) |
|---|---|---|---|
| Startup Time | < 50ms | ~800ms | ~2500ms |
| Memory Footprint | 15 MB | 100 MB+ | 200 MB+ |
| DOM Extract | Zero-Copy | JSON Serialize | Slow Bridge |
This skill is specialized for complex web interactions that require maintaining state (like being logged in), handling dynamic JavaScript content, or managing multiple pages simultaneously. It offers higher performance and control compared to standard fetch-based tools.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4Runs browser automation via fast-browser-use (fbu) for DOM-heavy pages, fast extraction, and browser tasks on macOS/Linux with Chrome. Includes session management and resource cleanup.
Headless browser automation CLI for AI agents using Rust and Chrome DevTools Protocol. Navigate, interact, snapshot accessibility trees, and take screenshots without Node.js.
Automates browser interactions via CLI: navigate, extract data, take screenshots, fill forms, click buttons. Uses remote Browserbase sessions for CAPTCHA solving and residential proxies on protected sites.