BrowserPilot

作者 ai-naymul已验证

Open‑source alternative to Perplexity Comet, director.ai and firecrawl combined

174
Stars
30
Forks
TypeScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/ai-naymul/BrowserPilot

快速入门

使用 BrowserPilot 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

BrowserPilot

Tell a browser what you want in plain English. It scrapes any website — even the ones that block everyone else.

License: MIT Python 3.8+ Tests: 236 passed PRs Welcome

Why BrowserPilot?

Most scraping tools break the moment a site has Cloudflare, DataDome, or Akamai. BrowserPilot doesn't.

BrowserPilot Playwright Selenium Browserbase Scrapy

Bypasses DataDome/Akamai Yes No No Partial No

AI vision (works on any site) Yes No No No No

Bulk scraping with stealth Yes No No Yes ($$$) Yes (no JS)

Self-hosted & free Yes Yes Yes No ($30/mo) Yes

Human-like behavior Yes No No No N/A

Pixelscan score 105/105 ~60/105 ~40/105 Unknown N/A

What You Can Do

# Single page — just describe what you want
"Go to Amazon and extract all laptop prices under $1000 as JSON"

# Bulk scrape — hit hundreds of pages across protected sites
curl -X POST http://localhost:8000/bulk -H "Content-Type: application/json" -d '{
  "urls": ["https://nike.com", "https://wayfair.com", "https://footlocker.com"],
  "prompt": "Extract product data",
  "format": "json",
  "max_workers": 3
}'

# Watch it work — live browser stream in your browser
# Open http://localhost:8000 and watch the AI navigate in real-time

Output formats: JSON, CSV, PDF, HTML, Markdown, plain text — just ask.

See It Work

Reddit's new React frontend — navigates feeds, clicks posts, scrolls comments. No selectors, no DOM parsing.

StatsMuse — scraped 191 rows of La Liga stats in seconds. JS-rendered data, no API needed.

10 protected sites in 60 seconds — DataDome, Akamai, Cloudflare, PerimeterX. Zero blocks.

Stealth That Actually Works

We don't just claim stealth — we prove it. BrowserPilot passes every major bot detection benchmark:

Benchmark Score

Pixelscan 105/105 Clear

Sannysoft 29/29 Passed

Rebrowser 9/10 Pass

BrowserScan All Normal

DeviceAndBrowserInfo "You are human!"

BrowserLeaks WebRTC No IP Leak

Don't trust screenshots — reproduce it yourself:

make benchmark          # or: python -m backend.benchmark

Launches Ghost Mode against these detectors live and saves a screenshot + page text for each to outputs/benchmark/, plus an automated pass/fail summary. Use --only sannysoft to target one, or --dry-run to list them without launching a browser.

Sannysoft Pixelscan DeviceInfo

Rebrowser BrowserScan BrowserLeaks

Tested Against Real Anti-Bot Systems

These are the systems that block 99% of automation tools. BrowserPilot loaded 11 out of 14:

Site Anti-Bot Result

Foot Locker DataDome (Tier S) Loaded

Leboncoin DataDome (Tier S) Loaded

Vinted DataDome (Tier S) Loaded

Booking.com DataDome + custom (Tier S) Loaded

Nike Akamai (Tier A) Loaded

New Balance Akamai (Tier A) Loaded

Zalando Akamai (Tier A) Loaded

Wayfair PerimeterX (Tier A) Loaded

Ticketmaster Multiple (Tier A) Loaded

Stake.com Cloudflare Enterprise Loaded

LinkedIn Cloudflare + custom Loaded

Foot Locker (DataDome) Leboncoin (DataDome) Vinted (DataDome)

Nike (Akamai) Wayfair (PerimeterX) Ticketmaster

New Balance (Akamai) Stake.com (CF Enterprise) Booking.com

How the stealth works

  • Patchright — Playwright fork that never calls Runtime.enable (defeats CDP detection)

  • Full Chromium + xvfb — real browser window, real GPU, real WebGL fingerprints

  • Fingerprint rotation — each session gets a unique viewport, UA, DPR, locale, timezone

  • Human behavior — Bezier mouse curves, variable typing speed, natural scroll patterns

  • Geo-matching — proxy country auto-maps to correct timezone + locale

  • WebRTC blocked — local IP never leaks

No noise injection. Anti-bots detect canvas/WebGL noise by rendering known values. Real fingerprints from real hardware, varied through configuration, is stronger.

Bulk Scraping at Production Scale

Not a demo — a production bulk engine that scrapes hundreds of pages concurrently without getting blocked.

Feature How

10 parallel workers Each with unique fingerprints

Context rotation New identity every N pages, no browser restart

Resource blocking Skip images/fonts/CSS — 3-5x faster

Adaptive throttle Backs off on 429s, speeds up on success

Checkpoint/resume Crash? Resume from where you stopped

Shared intelligence One worker blocked = all workers skip that combo

# Start a bulk job
curl -X POST http://localhost:8000/bulk \
  -H "Content-Type: application/json" \
  -d '{
    "urls": ["https://site1.com/page1", "https://site2.com/page2", "..."],
    "prompt": "Extract product names and prices",
    "format": "json",
    "max_workers": 5,
    "block_resources": true
  }'

# Check progress
curl http://localhost:8000/bulk/{job_id}

# Resume after crash
curl -X POST http://localhost:8000/bulk/{job_id}/resume

Benchmark Pages Speed Blocked

Hacker News 15/15 37.8 pages/min 0

DataDome + Akamai + PerimeterX + Cloudflare 10/10 33.7 pages/min 0

Quick Start

Docker (recommended)

git clone https://github.com/ai-naymul/BrowserPilot.git
cd BrowserPilot
echo 'GOOGLE_API_KEY=your_key_here' > .env
docker-compose up -d

Open http://localhost:8000 — done.

Manual

# 1. Backend
git clone https://github.com/ai-naymul/BrowserPilot.git && cd BrowserPilot
pip install -r requirements.txt
patchright install chromium
echo 'GOOGLE_API_KEY=your_key_here' > .env

# 2. Build the dashboard the app serves (required — the API serves frontend/dist)
cd frontend && npm install && npm run build && cd ..

# 3. Run
python -m uvicorn backend.main:app --reload

Configuration

# Required
GOOGLE_API_KEY=your_gemini_api_key

# Optional — proxies for heavy scraping
SCRAPER_PROXIES=[{"server": "http://proxy:port", "username": "user", "password": "pass", "location": "US"}]

Use Cases

Price monitoring — Track competitor pricing across Amazon, Walmart, Best Buy. Get structured JSON, schedule with cron.

Lead generation — Extract company data from LinkedIn, G2, Crunchbase. BrowserPilot handles login walls and infinite scroll.

Real estate data — Pull listings from Zillow, Realtor.com, Redfin. Export as CSV for analysis.

Market research — Monitor product launches on Product Hunt, reviews on Trustpilot, job postings on Indeed.

Academic research — Collect data from government portals, research databases, news sites that block standard scrapers.

How It Works

You type: "Extract laptop prices from Best Buy"
    |
    v
AI Vision (Gemini 2.5 Flash) sees the page like you do
    |
    v
Decides: click search, type query, scroll, extract data
    |
    v
Ghost Mode stealth keeps it undetected
    |
    v
S

常见问题

What is BrowserPilot?

BrowserPilot is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by ai-naymul. Open‑source alternative to Perplexity Comet, director.ai and firecrawl combined. It has 174 GitHub stars.

Is BrowserPilot safe to use?

Yes. BrowserPilot passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install BrowserPilot?

Clone the repository with "git clone https://github.com/ai-naymul/BrowserPilot" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is BrowserPilot written in?

BrowserPilot is primarily written in TypeScript. It is open-source under ai-naymul on GitHub, so you can review or fork the full source.

Are there alternatives to BrowserPilot?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh BrowserPilot against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情