Skip to content

MaTriXy/agent-browser-skill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Agent Browser Skills

A collection of packaged instructions that extend AI coding agent capabilities for browser automation, following the Agent Skills format.

Agent skills for agent-browser - a headless browser automation CLI optimized for AI agents.

Available Skills

Skill Description Compatibility
agent-browser Universal skill for browser automation Claude Code, Codex CLI, OpenCode, Gemini CLI
agent-browser-clawdbot Clawdbot-specific with metadata Clawdbot

Installation

Claude Code

npx add-skill MaTriXy/agent-browser
# or manually copy to ~/.claude/skills/

Codex CLI

npx add-skill MaTriXy/agent-browser
# or manually copy to ~/.codex/skills/

OpenCode

npx add-skill MaTriXy/agent-browser
# or manually copy to ~/.config/opencode/skills/

Gemini CLI

npx add-skill MaTriXy/agent-browser
# or manually copy to ~/.gemini/skills/

Clawdbot

Use the agent-browser-clawdbot skill which includes Clawdbot-specific metadata.

What is agent-browser?

A headless browser automation CLI that uses accessibility tree snapshots with ref-based element selection for deterministic actions. Perfect for:

  • Multi-step browser automation workflows
  • Web scraping with reliable element targeting
  • Form filling and submission
  • SPA testing with session isolation

Why This Approach?

Traditional browser automation:

  1. AI describes what to click
  2. Code queries DOM for element
  3. Element might have moved/changed
  4. Re-query on failure

agent-browser workflow:

  1. Get snapshot with refs
  2. AI identifies target ref from snapshot
  3. Use exact ref (deterministic)
  4. Fast execution (no re-query)

Quick Example

# Navigate and get snapshot
agent-browser open https://example.com
agent-browser snapshot -i --json

# AI identifies refs from snapshot, then:
agent-browser click @e2       # Click button
agent-browser fill @e3 "text" # Fill input

Prerequisites

npm install -g agent-browser
agent-browser install              # Download Chromium
agent-browser install --with-deps  # Linux: + system deps

Credits

Skills created by Yossi Elkrief (@MaTriXy)

agent-browser CLI by Vercel Labs

License

MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors