Script AI agents to automate browser interactions via Python SDK and Smooth CLI, enabling navigation, form filling, data scraping, web app testing, logins, and natural language tasks.
npx claudepluginhub circlemind-ai/smooth-sdk --plugin smooth-browser
TL;DR: Smooth is an AI browser automation SDK and CLI that can act and extract information from the web. It's powered by our browser agent which controls the browser with mouse and keyboard to carry out tasks autonomously on the web.
Discord · Documentation · Get API Key
The Smooth CLI is a browser for AI agents, enabling tools like Claude Code to navigate the web quickly, cheaply, and reliably. It can use your IP address to avoid captchas.
Autonomous agents like Claude Code are amazing at meaningful work—but they're mostly stuck in the CLI. Meanwhile, most valuable human work happens in the browser.
Current browser tools (Playwright MCP, --chrome flags, etc.) operate at the wrong abstraction level. They expose hundreds of low-level actions—click, type, select—forcing large models to think about mechanics instead of goals.
This creates three problems:
Smooth solves this with a higher-level interface designed for how agents actually think: natural language and goals, not DOM manipulation.
Today, Smooth is 20x faster and 5x cheaper than Claude Code with --chrome.
Get your API key at app.smooth.sh and then run:
pip install smooth-py
smooth config --api-key <your-key>
npx skills add https://github.com/circlemind-ai/smooth-sdk
Full CLI documentation: docs.smooth.sh/cli
Instead of this:
click(x=342, y=128)
type("search query")
click(x=401, y=130)
scroll(down=500)
click(x=220, y=340)
... (50 more steps)
Your agent just says:
"Search for flights from NYC to LA and find the cheapest option"
The agent thinks about your goals. Smooth handles the browser.
# Start a session
smooth start-session --url "https://example.com"
# Run a task
smooth run <session-id> "Find the pricing page and extract all plan names and prices"
# Close when done
smooth close-session <session-id>
Pro Tip: You can also give your agent complex goals. Our skill will teach your agent how to break them into subtasks and distribute them across multiple concurrent browser sessions automatically.
Use our Smooth SDK to automate any digital work.
pip install smooth-py
Full SDK documentation: docs.smooth.sh/sdk
from smooth import SmoothClient
smooth_client = SmoothClient(api_key="cmzr-YOUR_API_KEY")
task = smooth_client.run("Go to google flights and find the cheapest flight from London to Paris today")
print(f"Live URL: {task.live_url()}")
print(f"Agent response: {task.result()}")
We have async clients, persistent sessions, auto-captcha solvers, stealth mode, infinite scaling, and much more. Dive deep in the docs, it's fun.
Smooth is state-of-the-art on reliability, speed, and cost, check out our performance summary: https://docs.smooth.sh/performance
Get your API key at app.smooth.sh
Option 1: Environment variable
export CIRCLEMIND_API_KEY="your-api-key"
Option 2: Direct configuration
client = SmoothClient(api_key="your-api-key")
Option 3: CLI config
smooth config --api-key <your-key>
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques
Battle-tested Claude Code plugin for engineering teams — 48 agents, 182 skills, 68 legacy command shims, production-ready hooks, and selective install workflows evolved through continuous real-world use
Tools to maintain and improve CLAUDE.md files - audit quality, capture session learnings, and keep project memory current.
Claude Code skills for Godot 4.x game development - GDScript patterns, interactive MCP workflows, scene design, and shaders
Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer
Plugin-safe Claude Code distribution of Antigravity Awesome Skills with 1,393 supported skills.