smithery.ai

autonomous-browse

Run an autonomous browser agent to complete a task on a website

First seen Apr 18, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,634 B
  • docs SUMMARY.md 88 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Autonomous Browser Agent

Run an autonomous browser agent that uses Claude Sonnet to complete tasks on websites.

Usage

The arguments should be: <url> <task description>

Example:

/claude-chrome-stream:autonomous-browse https://github.com "Find the trending repositories page and list the top 5 projects"

Execution

Parse the arguments to extract URL and task:

cd ${pluginDir} && npm run dev -- run --url "$1" --task "$2" --max-steps 30

How It Works

  1. Browser Launch: Opens Chrome with the specified URL
  2. Visual Streaming: Captures frames via CDP screencast with intelligent delta detection
  3. Sonnet Analysis: Sends frames to Claude Sonnet for visual understanding
  4. Action Execution: Executes tool calls (click, type, scroll, etc.) from Sonnet
  5. Frame Synchronization: Waits for stable frame after each action before continuing
  6. Task Completion: Continues until Sonnet indicates task is complete or max steps reached

Features

  • Real-time visual feedback: Efficient frame streaming with 2% change threshold
  • Hybrid synchronization: Combines lock-step (stable frame waiting) with optimistic (frame IDs)
  • Error recovery: Automatic reconnection on session detachment
  • Context management: Maintains conversation history for multi-step tasks

Requirements

  • Anthropic API key set in ANTHROPICAPIKEY environment variable or config file
  • Node.js 18+
  • Chrome/Chromium installed