An advanced browser driver skill that allows AI agents to attach to your already-logged-in local browser via Chrome DevTools Protocol (CDP) and Playwright.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install browser-driver
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install browser-driver using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The browser-driver skill is a specialized addition to the library of Openclaw Skills, designed to bridge the gap between AI automation and highly secure user sessions. Instead of spinning up a fresh, unauthenticated browser profile that triggers multi-factor authentication (MFA) and tedious logins, this utility connects directly to the user's active, running browser using the Chrome DevTools Protocol (CDP) and Playwright. This ensures that the agent can execute tasks directly within existing logged-in sessions while the user monitors the workflow in real-time.
By leveraging this capability within the Openclaw Skills ecosystem, developers can securely automate interactions with complex dashboards, internal consoles, and platforms protected by single sign-on (SSO) or hardware security keys. The skill focuses heavily on safety, using ephemeral one-shot scripts rather than persistent automation hooks, keeping control firmly in the hands of the developer.
connectOverCDP to interact with the target tab, execute the command, and detach immediately.To utilize this browser-driver utility from Openclaw Skills, configure your Chromium-based browser to expose its remote debugging port.
Ensure your browser is fully closed, then launch it via terminal with the debugging flag:
/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --remote-debugging-port=9223 --user-data-dir=\"/tmp/chrome_dev_profile\"
If your AI agent is running on a remote server, bridge your local debugging port (9223) to the remote machine:
ssh -R 9223:localhost:9223 user@remote-vps-ip
Your agent executes lightweight, one-shot Node.js scripts to connect and act:
const { chromium } = require('playwright');
(async () => {
const browser = await chromium.connectOverCDP('http://localhost:9223');
const context = browser.contexts()[0];
const page = context.pages()[0] || await context.newPage();
await page.goto('https://example.com/dashboard');
await page.screenshot({ path: 'step-audit.png' });
await browser.close(); // Detaches without closing the browser
})();
The browser-driver skill uses a structured layout to organize documentation and temporary execution files.
| File Path | Description |
|---|---|
references/launch-and-drive.md |
Contains sequences for launching the browser, port probing, and structuring one-shot Playwright scripts. |
references/selectors-and-handoffs.md |
Guides on handling Shadow DOM, bypassing display overlays, resolving identity walls, and processing secrets. |
references/remote-over-tunnel.md |
Step-by-step security and routing guide for tunneling a remote agent to a local browser session. |
step-audit.png: Temporary screenshot generated after every mutating action for visual verification.*.secret: Temporary location for storing captured one-time tokens or secrets prior to password manager integration and immediate file shredding.Loading
An AI-powered spiritual and mental guide to Patanjali's classical Yoga philosophy and Swami Satchidananda's commentary.

A comprehensive color conversion, manipulation, and palette generation tool designed for automated design and web development workflows.

A narrative toolkit mapping the history of the deep learning revolution, its pioneers, and the corporate battles that shaped modern artificial intelligence.

A philosophical and ethical toolkit for AI agents to help users examine consciousness, transhumanism, and meaning in the digital age.

An actionable AI-powered toolkit based on Bob Goff's Dream Big to help users clarify their ambitions, overcome fear, and design an intentional, community-driven life.

An AI-powered industry research assistant designed to conduct structured market analysis, apply established business frameworks, and extract key performance indicators.








































