anemone-browser
Managed headful Chrome browser for OpenClaw agents with anti-bot-detection, human-in-the-loop VNC takeover, and multi-session window isolation. Use when: (1) setting up browser automation on a new machine (Mac/Linux/Docker), (2) browser gets blocked by Google, Cloudflare, or CAPTCHAs, (3) need human to intervene via VNC (login, CAPTCHA solving), (4) multiple agent sessions need independent browser windows without conflicts, (5) configuring OpenClaw's browser tool for headful Chrome. Triggers: "set up browser", "browser blocked", "CAPTCHA", "VNC", "Google Scholar blocked", "headless detected", "anti-detection", "browser setup", "Chrome for agent".
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/easonc13/anemone-browserAnemone Browser — Managed Browser for OpenClaw Agents
Headful Chrome with anti-detection, VNC takeover, and multi-session isolation. Works on Mac, Linux, Docker — anywhere OpenClaw runs.
Setup
macOS
bash scripts/setup-mac.sh
Detects Chrome, configures OpenClaw browser profile. After setup:
openclaw browser start
# Agent's browser tool works automatically
Note: macOS setup does NOT include VNC/noVNC. The user is expected to access the Mac via their own remote desktop solution (e.g. macOS Screen Sharing, Tailscale, or physical access). VNC takeover with noVNC links is only available on Linux.
Linux / Docker
# Install deps (once)
bash scripts/setup.sh
# Start browser + VNC environment
bash scripts/start.sh [password] [novnc_port] [cdp_port] [resolution]
start.sh outputs the noVNC URL, password, and CDP port. Safe to re-run.
OpenClaw Config
Setup scripts configure this automatically. Manual reference:
macOS:
{
"browser": {
"enabled": true,
"defaultProfile": "openclaw",
"headless": false,
"executablePath": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
}
}
Linux:
{
"browser": {
"enabled": true,
"headless": false,
"noSandbox": true,
"executablePath": "/usr/bin/google-chrome-stable"
}
}
Multi-Session Window Isolation
Multiple sessions share one Chrome (same cookies/logins) but each gets its own window.
Rules (MUST follow):
-
On session start — open your own tab, save the targetId:
browser action=open targetUrl="https://example.com" profile=openclaw # Returns targetId — THIS IS YOURS, save it -
ALL subsequent calls — always include your targetId:
browser action=snapshot profile=openclaw targetId="<your-targetId>" browser action=navigate profile=openclaw targetId="<your-targetId>" targetUrl="..." browser action=act profile=openclaw targetId="<your-targetId>" ... -
On session end — close your tab:
browser action=close targetId="<your-targetId>" -
NEVER operate without targetId — you'll land on another session's tab.
-
NEVER pick another session's tab from
browser action=tabs.
Opening a new window (not tab) via CDP:
import json, asyncio, websockets, urllib.request
async def open_new_window(cdp_port, url):
version = json.loads(urllib.request.urlopen(f"http://127.0.0.1:{cdp_port}/json/version").read())
async with websockets.connect(version["webSocketDebuggerUrl"]) as ws:
await ws.send(json.dumps({
"id": 1, "method": "Target.createTarget",
"params": {"url": url, "newWindow": True}
}))
resp = json.loads(await ws.recv())
return resp["result"]["targetId"]
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-easonc13-anemone-browser": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
sui-move
Sui blockchain and Move smart contract development. Use when the user asks about Sui, Move language, smart contracts, objects, transactions, or blockchain development on Sui.
sui-knowledge
Answer questions about Sui blockchain ecosystem, concepts, tokenomics, validators, staking, and general knowledge. Use when users ask "what is Sui", "how does Sui work", "Sui vs other chains", or any Sui-related questions that aren't specifically about Move programming.
abstract-searcher
Add abstracts to .bib file entries by searching academic databases (arXiv, Semantic Scholar, CrossRef) with browser fallback.
mac-control
Control Mac via mouse/keyboard automation using cliclick and AppleScript. Use for clicking UI elements, taking screenshots, getting window bounds, handling coordinate scaling on Retina displays, and automating UI interactions like clicking Chrome extension icons, dismissing dialogs, or toolbar buttons.
m3u8-downloader
Download encrypted m3u8/HLS videos using parallel downloads. Use when given an m3u8 URL to download a video, especially encrypted HLS streams with AES-128.