Agent skill · Testing & QA

agent-browser

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.

melandlabsgithub.com/melandlabsGitHub ↗
claude-coderead-onlyships scriptsApache-2.0
Install
npx skills add melandlabs/openloomi --skill agent-browser --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 9
SKILL.md size: 17 KB
Bundled scripts: yes
Allowed tools: Bash(npxagent-browser:*)Bash(agent-browser:*)
Path: skills/agent-browser/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 764
Language: TypeScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Browser Automation with agent-browser ## Installation ### Global Installation (recommended) Installs the native Rust binary for maximum performance: ```bash npm install -g agent-browser agent-browser install # Download Chromium ``` This is the fastest option -- commands run through the native Rust CLI directly with sub-millisecond parsing overhead. ### Quick Start (no install) Run directly with `npx` if you want to try it without installing globally: ```bash npx agent-browser install # Download Chromium (first time only) npx agent-browser open example.com ``` > **Note:** `npx` routes through Node.js before reaching the Rust CLI, so it is noticeably slower than a global install. For regular use, install globally. ### Homebrew (macOS) ```bash brew install agent-browser agent-browser install # Download Chromium ``` ### Linux Dependencies On Linux, install system dependencies: ```bash agent-browser install --with-deps # or manually: npx playwright install-deps chromium ``` ## Core Workflow Every browser automation follows this pattern: 1. **Navigate**: `agent-browser open <url>` 2. **Snapshot**: `agent-browser snapshot -i` (get element refs like `@e1`, `@e2`) 3. **Interact**: Use ref

What's inside
Steps it walks through
  1. Installation
  2. Global Installation (recommended)
  3. Quick Start (no install)
  4. Homebrew (macOS)
  5. Linux Dependencies
  6. Core Workflow
  7. Command Chaining
  8. Essential Commands
  9. Common Patterns
  10. Form Submission
  11. Authentication with State Persistence
  12. Session Persistence
  13. Data Extraction
  14. Parallel Sessions
Ships with 8 files
  • references/authentication.md
  • references/proxy-support.md
  • references/session-management.md
  • references/snapshot-refs.md
  • references/video-recording.md
  • templates/authenticated-session.sh
  • templates/capture-workflow.sh
  • templates/form-automation.sh
Commands it runs
npm install -g agent-browser
agent-browser install  # Download Chromium
npx agent-browser install   # Download Chromium (first time only)
npx agent-browser open example.com
brew install agent-browser
agent-browser install --with-deps
or manually: npx playwright install-deps chromium
agent-browser open https://example.com/form
agent-browser snapshot -i
agent-browser fill @e1 "user@example.com"
More from openloomi
All skills →
About this skill
What does the agent-browser skill do?

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.

How do I install it?

Run `npx skills add melandlabs/openloomi --skill agent-browser --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From melandlabs/openloomi, a repository with 764 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going