browser-plus
Installation
SKILL.md
Browser Plus
Intelligent browser automation that routes between OpenClaw native browser tool and Vercel agent-browser based on element type detection.
Overview
Browser Plus provides a unified API for browser automation that intelligently selects the best execution strategy:
- Rich text editors (contenteditable, tweet textarea, etc.) → Uses agent-browser keyboard simulation for real key events
- Plain inputs (text fields, password fields, etc.) → Uses native browser fill for faster execution
Quick Start
const browserPlus = require('./skills/browser-plus');
// Auto-routes based on element type
await browserPlus.type({ ref: '@e12', text: 'Hello World' });