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.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Core Capabilities
- Installation
- Best Practices
pip install browser-use playwright install
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.
