- 📁 references/
- 📁 templates/
- 📄 SKILL.md
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.
- 📁 references/
- 📁 templates/
- 📄 SKILL.md
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.
- 📁 references/
- 📁 scripts/
- 📄 SKILL.md
Automates the user's real Chrome browser via the Browser MCP Chrome extension. Uses the user's logged-in sessions and real browser fingerprint to avoid bot detection. Use when the user needs to browse websites, fill forms, scrape data, or test web pages using their actual browser profile.
- 📁 docs/
- 📁 references/
- 📁 scripts/
- 📄 .gitignore
- 📄 LICENSE
- 📄 README.md
Stealth browser automation with Camoufox for hostile sites that block standard Playwright or Selenium flows. Browser workflows prefer camoufox-nixos on NixOS hosts and fall back to distrobox plus pybox on compatible Linux setups. Use when Cloudflare, Datadome, Airbnb, Yelp, or similar anti-bot targets require persistent login and session reuse. Browser lane only; API helpers are secondary.
- 📁 references/
- 📁 templates/
- 📄 SKILL.md
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.
- 📁 examples/
- 📁 scripts/
- 📄 LICENSE.txt
- 📄 SKILL.md
Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.
Drive the shared hivemoot-browser sidecar via agent-browser (vercel-labs). Use for JS-rendered pages, authenticated sessions via bootstrapped cookies, OAuth flows — anything curl / API calls can't handle. --- # Web browse You have a shared headless Chromium sidecar attached over the Chrome DevTools Protocol at `$BROWSER_CDP_URL`. Drive it with the `browser` plugin's CLI — a thin Hermes-style wrapper that injects fleet flags (`--cdp`, `--session-name`, `--state`) and delegates to `agent-browser` for all browser logic. python3 -m hivemoot_agent.plugins_builtin.browser.cli <subcommand> [args] ## When to use | Task | Use this skill? | Cheaper alternative | |---|---|---| | Fetch a JS-rendered SPA's content | ✓ | none — browser is required | | Log into a SaaS with your bootstrapped cookies | ✓ | none | | Fill a multi-step form | ✓ | none | | Read a static HTML page | ✗ | `curl -sL <url>` | | GitHub / Linear / Notion work via API | ✗ | their respective CLIs / APIs | | Scrape anti-bot sites anonymously | ✗ | out of scope; report to operator | **Default to NO.** Every browser call is multi-second and multi-MB. Reach for it only when there's no cheaper path. ## Subcommands (1:1 with agent-browser) ### `navigate <url>` Open a URL. Aliases `open` in agent-browser. python3 .../cli.py navigate https://example.com ✓ Example Domain