ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

steel-browser

Control cloud browser sessions via Steel.dev for web automation and computer-use agents. Use when you need to browse the web, fill forms, click elements, take screenshots, scrape content, or build browser automation loops. Uses Playwright selectors (CSS/text/aria) instead of pixel coordinates — more reliable than e2b-desktop for pure web tasks. Supports residential proxies and CAPTCHA solving.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/eyhn/steel-browser
Or

Steel Browser Skill

Cloud browser-use via Steel.dev + Playwright Python SDK. Ideal for web automation, scraping, form filling, and AI agent browser loops.

Prerequisites

pip install steel-sdk playwright
export STEEL_API_KEY=your_key_here

Get your API key at https://app.steel.dev → Settings → API Keys (free: 100 browser hours).

Steel API key should be set in OpenClaw config or environment:

openclaw config set env.STEEL_API_KEY "your_key"

State Management

  • start_session.sh saves session ID to ~/.steel_state
  • All scripts auto-load it from there
  • Override anytime with export STEEL_SESSION_ID=<id>
  • Sessions persist until release_session.sh or timeout

Scripts

ScriptUsageDescription
start_session.sh[--proxy] [--captcha] [--timeout MS]Create session; prints SESSION_ID + VIEWER_URL
release_session.sh[SESSION_ID]Release session
list_sessions.sh(none)List active sessions
navigate.shURL [--wait-until networkidle]Go to URL
screenshot.sh[OUTPUT.png] [--full-page]Take screenshot
click.shSELECTORClick by CSS/text/aria selector
click_coords.shX Y [--right] [--double]Click at pixel coords (fallback)
type.shSELECTOR "text"Fill input field
press_key.shKEYPress key (e.g. Enter, Control+a)
scroll.shAMOUNT|--to-bottom|--to-top|SELECTORScroll page
hover.shSELECTORHover over element
select.shSELECTOR VALUESelect dropdown option
get_content.sh[--html] [SELECTOR]Extract page text or HTML
eval_js.sh"js expression"Execute JavaScript, print result
wait_for.shSELECTOR [TIMEOUT_MS]Wait for element to appear
get_url.sh(none)Print current URL and page title

Selector Examples

Steel uses Playwright selectors — much more powerful than pixel coords:

# By CSS
click.sh "#submit-button"
click.sh ".nav-link:first-child"

# By text content
click.sh "text=Sign in"
click.sh "button:has-text('Continue')"

# By aria label
click.sh "[aria-label='Search']"
click.sh "[placeholder='Email address']"

# XPath
click.sh "xpath=//button[@type='submit']"

Browser-Use Agent Loop Pattern

SCRIPTS="skills/steel-browser/scripts"

# 1. Start session (add --proxy --captcha for tough sites)
source <($SCRIPTS/start_session.sh)
echo "Session: $SESSION_ID"
echo "Watch at: $VIEWER_URL"

# 2. Navigate
$SCRIPTS/navigate.sh "https://example.com"

Metadata

Author@eyhn
Stars2387
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-eyhn-steel-browser": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.