Get Started with xbrowser CLI
Install the xbrowser CLI and start using plugins from the marketplace in minutes
1
Install xbrowser CLI
Install globally via npm:
npm install -g xbrowser
Or using yarn: yarn global add xbrowser
2
Browse & Install Plugins
Search and install plugins directly from the CLI:
# Search for plugins xbrowser plugin search "ecommerce" # Install a plugin xbrowser plugin install @xbrowser/plugin-amazon # List installed plugins xbrowser plugin list # Run a plugin command xbrowser run amazon scrape
3
Publish Your Plugin
Login and publish your plugins to the marketplace:
# Login to marketplace xbrowser plugin login --token <your-api-key> # Validate your plugin before publishing xbrowser plugin publish --dry-run # Publish to marketplace xbrowser plugin publish # Check your account xbrowser plugin whoami
Get an API key from your developer settings
4
Quick Start
Common commands to get you started:
# Initialize a new project xbrowser init my-project # Start the browser automation engine xbrowser start # Connect to a running browser xbrowser connect # Record user actions xbrowser record
AI-Assisted Plugin Development
Load the xbrowser skill into your AI coding agent to build plugins faster. The skill provides templates, best practices, command patterns, and automated scaffolding.
1. Download the skill:
curl -o plugin-dev.md https://xbrowser.dev/skills/plugin-dev.md
2. Place in your skills directory:
# For Claude Code / OpenCode mv plugin-dev.md .opencode/skills/ # For Cursor / other agents mv plugin-dev.md .cursor/skills/
3. Ask your AI agent:
"Create an xbrowser plugin for scraping product data from example.com"
Plugin Development Workflow
Create
→Test
→Login
→Publish
→AI Assist
Create → Test locally → Login → Publish to marketplace. Use AI to speed up every step.