public

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

download Installation

npm install @openclaw/skill-browser
verified_user

Security Note

Operates within a strictly sandboxed Chromium environment, ensuring no data leaks or unauthorized system access occurs during browsing sessions.

verified Audited by OpenClaw
lock Sandbox Active

code Example Prompts

chat_bubble_outline

"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);
chat_bubble_outline

"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');

Related Skills