OpenClaw Skill: Browser - How to Install & Use
Enable your AI agent to navigate, interact, and extract data from the live web.
v1.4.2
45.2k Downloads
Stable Release
Installation
npm install @openclaw/skill-browserSecurity Note
Operates within a strictly sandboxed Chromium environment, ensuring no data leaks or unauthorized system access occurs during browsing sessions.
Audited by OpenClaw
Sandbox Active
Example Prompts
"Search for the latest news on SpaceX Starship and summarize the three most recent articles."
1await browser.search('SpaceX Starship news');
2const results = await browser.getElements('.article-card');
3return results.slice(0, 3);
"Go to openclaw-skills.xyz and extract all listed skill categories from the sidebar."
1await browser.goto('https://openclaw-skills.xyz');
2const nav = await browser.innerText('nav');