Agent skill · Data & Analytics

browser-use

You are an expert in Browser Use, the Python library that lets AI agents control a web browser. You help developers build agents that can navigate websites, fill forms, click buttons, extract data, and complete multi-step web tasks — using vision and DOM understanding to interact with any website like a human would.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill browser-use-terminalskills-skills --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.0.0
Declared author: terminal-skills
Path: skills/ai-llm/browser-use-terminalskills-skills/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# Browser Use — AI Browser Automation Agent You are an expert in Browser Use, the Python library that lets AI agents control a web browser. You help developers build agents that can navigate websites, fill forms, click buttons, extract data, and complete multi-step web tasks — using vision and DOM understanding to interact with any website like a human would. ## Core Capabilities ```python from browser_use import Agent from langchain_openai import ChatOpenAI agent = Agent( task="Go to amazon.com, search for 'mechanical keyboard', and find the best-rated one under $100", llm=ChatOpenAI(model="gpt-4o"), ) result = await agent.run() print(result) # "The best-rated mechanical keyboard under $100 is..." # Multi-step tasks agent = Agent( task=""" 1. Go to github.com/myorg/myrepo 2. Click on Issues tab 3. Create a new issue with title 'Update dependencies' and body 'Run npm audit fix' 4. Add the label 'maintenance' """, llm=ChatOpenAI(model="gpt-4o"), ) await agent.run() # With custom browser config from browser_use import BrowserConfig config = BrowserConfig( headless=True, proxy="http://proxy:8080", cookies=[{"name": "session", "value": "abc123", "domain": ".example.com"}], ) agent = Ag

What's inside
Steps it walks through
  1. Core Capabilities
  2. Installation
  3. Best Practices
Ships with 1 file
  • metadata.json
Commands it runs
pip install browser-use
playwright install
More from claude-skill-registry
All skills →
About this skill
What does the browser-use skill do?

You are an expert in Browser Use, the Python library that lets AI agents control a web browser. You help developers build agents that can navigate websites, fill forms, click buttons, extract data, and complete multi-step web tasks — using vision and DOM understanding to interact with any website like a human would.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill browser-use-terminalskills-skills --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 majiayu000/claude-skill-registry, a repository with 534 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