Agent skill · Security

agent-browser

Agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.

fcakyongithub.com/fcakyonGitHub ↗
claude-codecodexcursorread-onlyships scriptsApache-2.0
Install
npx skills add fcakyon/claude-codex-settings --skill agent-browser --agent claude-code

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

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

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

From the SKILL.md

# agent-browser core Fast browser automation CLI for AI agents. Chrome/Chromium via CDP, no Playwright or Puppeteer dependency. Accessibility-tree snapshots with compact `@eN` refs let agents interact with pages in ~200-400 tokens instead of parsing raw HTML. Most normal web tasks (navigate, read, click, fill, extract, screenshot) are covered here. Load a specialized skill when the task falls outside browser web pages — see [When to load another skill](#when-to-load-another-skill). ## The core loop ```bash agent-browser open <url> # 1. Open a page agent-browser snapshot -i # 2. See what's on it (interactive elements only) agent-browser click @e3 # 3. Act on refs from the snapshot agent-browser snapshot -i # 4. Re-snapshot after any page change ``` Refs (`@e1`, `@e2`, ...) are assigned fresh on every snapshot. They become **stale the moment the page changes** — after clicks that navigate, form submits, dynamic re-renders, dialog opens. Always re-snapshot before your next ref interaction. ## Quickstart ```bash # Install once npm i -g agent-browser && agent-browser install # Linux hosts can install required browser libraries too agent-browser install --with-deps # Take a screenshot of

What's inside
Steps it walks through
  1. The core loop
  2. Quickstart
  3. MCP integration
  4. eve agent integration
  5. Reading a page
  6. Interacting
  7. When refs don't work or you don't want to snapshot
  8. Waiting (read this)
  9. Common workflows
  10. Log in
  11. Persist session across runs
  12. Extract data
  13. Screenshot
  14. Handle multiple pages via tabs
Ships with 13 files
  • references/authentication.md
  • references/commands.md
  • references/profiling.md
  • references/proxy-support.md
  • references/session-management.md
  • references/snapshot-refs.md
  • references/streaming.md
  • references/trust-boundaries.md
  • references/video-recording.md
  • references/webgpu.md
  • templates/authenticated-session.sh
  • templates/capture-workflow.sh
  • templates/form-automation.sh
Commands it runs
agent-browser open <url>        # 1. Open a page
agent-browser snapshot -i       # 2. See what's on it (interactive elements only)
agent-browser click @e3         # 3. Act on refs from the snapshot
agent-browser snapshot -i       # 4. Re-snapshot after any page change
Install once
npm i -g agent-browser && agent-browser install
Linux hosts can install required browser libraries too
agent-browser install --with-deps
Take a screenshot of a page
agent-browser open https://example.com
More from claude-codex-settings
All skills →
About this skill
What does the agent-browser skill do?

Agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.

How do I install it?

Run `npx skills add fcakyon/claude-codex-settings --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 fcakyon/claude-codex-settings, a repository with 967 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