← ClaudeAtlas

agentic-browser-automationlisted

Build AI-powered browser agents that autonomously navigate, scrape, fill forms, and extract data from dynamic websites using LLM reasoning + Playwright
mouadja02/skills · ★ 2 · AI & Automation · score 65
Install: claude install-skill mouadja02/skills
# Agentic Browser Automation **Tier:** POWERFUL **Category:** AI Agents **Domain:** Browser Automation / Web Scraping / Agentic Workflows ## Overview Build autonomous browser agents that use LLMs to reason about web pages and perform multi-step tasks — navigating, clicking, filling forms, extracting data, and recovering from failures — without hardcoded selectors. This replaces brittle CSS/XPath scraping with intent-driven, self-healing automation. ## When to Use - Building a web scraper that survives site redesigns - Creating an agent that fills forms or completes multi-step web workflows - Replacing fragile Selenium/Puppeteer scripts with AI-driven automation - Extracting structured data from any website using natural language - Building autonomous research agents that browse and collect info - Implementing self-healing selectors that adapt to DOM changes - Creating Browser-Use / Skyvern-style agentic browser workflows ## Architecture ``` ┌─────────────────────────────────────┐ │ Orchestrator │ │ (Breaks goal into browser steps) │ ├─────────────────────────────────────┤ │ LLM Reasoning Layer │ │ • Page understanding (DOM→action) │ │ • Selector generation (NL→CSS) │ │ • Error recovery (failure→retry) │ │ • Data extraction (page→JSON) │ ├─────────────────────────────────────┤ │ Browser Control Layer │ │ Playwright / Puppeteer │ │ • Navigation, clicks, typing │ │ • Screenshot +