🌐
AutomationPython

Agent Browser

by EXboys

Agent Browser is an Automation skill for Claude Code, published by EXboys in evotown.

663 stars63 forkson EXboys/evotownAdded 2026/08/24Repository updated 2026/08/09
agent-skillsevolutionruntime-governanceself-evolvingself-learning
Install in seconds
Install Agent Browser
Copy Agent Browser into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/EXboys/evotown/tree/main/backend/arena_skills/agent-browser ~/.claude/skills/agent-browser

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/EXboys/evotown.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
backend/arena_skills/agent-browser/SKILL.md in EXboys/evotown
Installs to
~/.claude/skills/agent-browser
Collection
One of 8 skills cataloged from this repository
Category
Automation1523 skills

What Agent Browser does

Agent Browser opens pages, snapshots interactive elements, and lets an agent click, fill, and read content by reference. Use it for scripted web workflows, form submissions, data extraction, and persistent browser sessions.

Agent Browser is cataloged under Automation on DirSkills. Agent Browser comes from a repository tagged agent-skills, evolution, runtime-governance, self-evolving and self-learning.

Documentation

README

Browser Automation with agent-browser

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 refs to click, fill, select
  4. Re-snapshot: After navigation or DOM changes, get fresh refs
agent-browser open https://example.com/form
agent-browser snapshot -i
# Output: @e1 [input type="email"], @e2 [input type="password"], @e3 [button] "Submit"

agent-browser fill @e1 "user@example.com"
agent-browser fill @e2 "password123"
agent-browser click @e3
agent-browser wait --load networkidle
agent-browser snapshot -i  # Check result

Essential Commands

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Agent Browser

  • What else does EXboys publish alongside Agent Browser?

    Agent Browser is one of 8 skills that DirSkills catalogs from EXboys/evotown, the repository it ships in. Its siblings there include Calculator, Database Query and Evotown Dispatch Complete. Each one is a separate skill with its own page in this directory, installs the same way Agent Browser does, and is maintained by EXboys in that same repository. The rest of the collection is listed on the EXboys/evotown page.

  • How does Agent Browser compare to other Automation skills?

    Agent Browser ranks #1117 by stars among the 1523 Automation skills in this catalog. The most-starred ones next to it are Autonomous Loops, Autonomous Agent Harness and Automation Audit Ops. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Agent Browser against them. Open each page to compare what they document and how they install.