What problem does it solve? Automating browser tasks usually requires heavy frameworks like Puppeteer or Playwright. This Skill controls Chrome directly through the Chrome DevTools Protocol (CDP) with a lightweight Node.js CLI, letting you navigate pages, interact with elements, capture screenshots, and inspect console or network errors without extra dependencies. ## Core Features & Use Cases - Accessibility Snapshots: Get a compact accessibility tree with stable element references for reliable clicking and form filling. - Navigation & Waits: Navigate to URLs with explicit timeouts, wait for text or selectors, and manage multiple tabs. - Screenshots & Debugging: Capture JPEG, PNG, or WebP screenshots (including full-page) and inspect console messages and failed network requests. - Flexible Connections: Attach to your logged-in Chrome, launch an anonymous Chromium instance, or connect to remote endpoints like Cloudflare Browser Run. - Use Case: Automate a login flow by navigating to a login page, filling credentials by selector, submitting the form, waiting for the dashboard text, and capturing a verification screenshot. ## Quick Start Ask the agent to navigate to a URL, take an accessibility snapshot, and click a specific element in Chrome.