Skip to main content

Overview

Agent Skills are modular capabilities that extend AI agents with domain-specific expertise. Skills package instructions, workflows, and best practices that agents can use automatically when relevant to your request. The Browserbase skills teach AI coding agents like Claude Code how to create, debug, and deploy browser automations using the browse CLI and Browserbase infrastructure.
Skills work by providing structured guidance to AI agents, enabling them to perform complex browser automation tasks through natural language commands.

Key Features

Browser Automation

Create and run browser automations using the browse CLI with interactive sessions, snapshots, and screenshots

Debug & Fix

Identify and correct broken CSS selectors and failing automations by exploring live pages

Authentication Flows

Handle login flows for protected sites with guided authentication workflows

Serverless Functions

Deploy your automations as Browserbase Functions that run on a schedule or via webhook

Installation

The Vercel Skills CLI provides a simple way to install skills across multiple AI coding agents including Claude Code, Cursor, and others.
1

Install the skill

Run the following command to add the Browserbase skill to your project:
npx skills add browserbase/skills
This installs the skill into your project’s .claude/skills/ directory.
2

Install the browse CLI

The skill requires the browse CLI for browser automation:
npm install -g @browserbasehq/browse-cli

Try It Out

Once installed, you can use the skill with your AI coding agent. Try these example commands:

Explore a website

Ask your agent to explore a website and understand its structure:
Use the browse skill to explore https://news.ycombinator.com and identify the selectors for story titles and scores

Further Reading