Install any skill in seconds. Free to start, no credit card required.
Get Started Free →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.
.claude/skills/sundial-org-fast-browser-use/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 44% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -35% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 116% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -26% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -33% | 0% |
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.
Simulate mouse jitter and random delays to scrape protected sites.
bashfast-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.
bashfast-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
bashfast-browser-use login --url "https://github.com/login" --save-session ./auth.json
Step 2: Reuse session later
bashfast-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.
bash# 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):
json[ "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:
bashfast-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.
Other measured skills in the registry, with their headline benchmark lift.