Install Bright Data skills (660+ scrapers) into your AI coding agent for best-practice API usage, working scripts and embedded product knowledge instantly.
Skills are reusable instruction sets - defined in SKILL.md files - that extend your coding agent’s capabilities with Bright Data APIs. Each skill gives your agent embedded best practices, parameter knowledge, and runnable shell scripts it can execute directly.Install Bright Data skills and your agent immediately knows:
Which API to call for search, scraping, or structured data extraction
How to authenticate and structure requests correctly
Search Google and get structured JSON results with titles, links, and descriptions. Supports pagination. Powered by the Bright Data SERP API.
Scrape
Scrape any webpage as clean markdown with automatic bot detection bypass, CAPTCHA solving, and JavaScript rendering. Powered by the Web Unlocker API.
Data Feeds
Extract structured data from 40+ websites - Amazon, LinkedIn, Instagram, TikTok, YouTube, eBay, Walmart, and more - with automatic polling.
Bright Web MCP
Orchestrate 60+ MCP tools for search, scraping, structured extraction, and browser automation in a single integration.
Best Practices
Production-ready API reference for coding agents. Covers Web Unlocker, SERP API, Scrapers, and Browser API - with an API selection guide, auth patterns, and code examples in Python and JavaScript.
Use the npx skills CLI to install Bright Data skills into your agent:
# Install all skills (auto-detects your installed agents)npx skills add brightdata/skills# Install to a specific agent onlynpx skills add brightdata/skills -a claude-codenpx skills add brightdata/skills -a cursor# Install a specific skill onlynpx skills add brightdata/skills --skill searchnpx skills add brightdata/skills --skill scrapenpx skills add brightdata/skills --skill data-feedsnpx skills add brightdata/skills --skill bright-data-best-practices# Install globally (available across all your projects)npx skills add brightdata/skills -g
The CLI detects which agents you have installed and places skill files in the correct directories automatically.
3
Use the skills in your agent
Once installed, your agent can run the skills directly:
# Search Googlebash skills/search/scripts/search.sh "your query" [page]# Scrape a URL as clean markdownbash skills/scrape/scripts/scrape.sh "https://example.com"# Extract structured data (run without args to see all 40+ dataset types)bash skills/data-feeds/scripts/datasets.sh# With a specific dataset type and URLbash skills/data-feeds/scripts/datasets.sh amazon_product "https://amazon.com/dp/ASIN"bash skills/data-feeds/scripts/datasets.sh linkedin_person_profile "https://linkedin.com/in/username"
Skills are installed into .claude/skills/ in your project (or ~/.claude/skills/ with -g for global). Claude Code discovers them automatically on the next session.To verify installation:
npx skills list -a claude-code
npx skills add brightdata/skills -a cursor
Skills land in .cursor/skills/ in your project. Cursor Composer picks them up automatically. Reference them in chat:
Use the scrape skill to extract content from https://example.com
npx skills add brightdata/skills -a windsurf
Windsurf’s Cascade reads skills from .windsurf/skills/ and loads them into its context automatically.
# Install to every agent you have installednpx skills add brightdata/skills --all# Non-interactive (CI/CD friendly)npx skills add brightdata/skills --all -y
The CLI auto-detects all installed agents and distributes the skill files to each one.
Clone the repo and reference the SKILL.md files directly:
Each skill’s SKILL.md is plain markdown - inject it into any agent’s system prompt, RAG index, or context window:
cat skills/search/SKILL.md # Paste into system promptcat skills/scrape/SKILL.mdcat skills/data-feeds/SKILL.mdcat skills/bright-data-best-practices/SKILL.md # API selection + best practices
# List all installed skillsnpx skills list# Check for updatesnpx skills check# Update all skills to latestnpx skills update# Remove a skillnpx skills remove brightdata/skills
For the richest agent setup, combine skills with the Bright Web MCP Server. Skills give your agent embedded knowledge and runnable scripts; the MCP server gives it live web access with 60+ tools - all without leaving your coding environment.
New skills are added regularly. Star the GitHub repository to stay updated.