.claude/skills/ts-browser-use/SKILL.md
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 skillsauth add eliferjunior/Claude browser-useInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
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 = Agent(task="...", llm=llm, browser_config=config)
# Extract structured data
from pydantic import BaseModel
class Product(BaseModel):
name: str
price: float
rating: float
agent = Agent(
task="Go to bestbuy.com and find the top 5 laptops. Return structured data.",
llm=ChatOpenAI(model="gpt-4o"),
output_model=list[Product],
)
result = await agent.run()
# result is list[Product] — validated Pydantic objects
pip install browser-use
playwright install
output_model for typed extraction; Pydantic validation on resultsheadless=True for server/CI; False for debugging to watch the agentdevelopment
Expert guidance for Fireworks AI, the platform for running open-source LLMs (Llama, Mixtral, Qwen, etc.) with enterprise-grade speed and reliability. Helps developers integrate Fireworks' inference API, fine-tune models, and deploy custom model endpoints with function calling and structured output support.
development
Convert any website into clean, structured data with Firecrawl — API-first web scraping service. Use when someone asks to "turn a website into markdown", "scrape website for LLM", "Firecrawl", "extract website content as clean text", "crawl and convert to structured data", or "scrape website for RAG". Covers single-page scraping, full-site crawling, structured extraction, and LLM-ready output.
tools
Expert guidance for Firebase, Google's platform for building and scaling web and mobile applications. Helps developers set up authentication, Firestore/Realtime Database, Cloud Functions, hosting, storage, and analytics using Firebase's SDK and CLI.
development
When the user needs to build file upload functionality for a web application. Use when the user mentions "file upload," "image upload," "upload endpoint," "multipart upload," "presigned URL," "S3 upload," "file validation," "upload to cloud storage," or "accept user files." Handles upload endpoints, file validation (type, size, magic bytes), cloud storage integration, and upload status tracking. For image/video processing after upload, see media-transcoder.