fivetaku/insane-search

Auto-bypass for blocked websites in Claude Code — Phase 0→3 adaptive scheduler, no API keys

What it solves

It solves the problem of AI agents (specifically Claude Code) being blocked by 403 errors, Web Application Firewalls (WAF), CAPTCHAs, and anti-bot measures when trying to read public web pages. It allows the agent to access content from platforms like X, Reddit, and YouTube without requiring API keys or user logins.

How it works

The tool uses an adaptive escalation pipeline to retrieve content. If a standard fetch fails, it tries the following phases in order:

  1. Special Public Endpoints: Uses platform-specific APIs and feeds.
  2. Lightweight Probes: Tries public API readers, syndication gateways, and alternative URL variants (e.g., mobile or RSS).
  3. TLS Impersonation: Uses curl_cffi to mimic the TLS fingerprints of real browsers (Safari, Chrome, Firefox).
  4. Headless Browser: Launches a real headless browser for pages that require JavaScript rendering.

It also integrates yt-dlp for YouTube captions and metadata, and scans responses for OGP/JSON-LD to extract structured data even from partial pages.

Who it’s for

Developers using Claude Code who need their AI agent to reliably research public web content, social media threads, and video transcripts without manually managing proxies or API credentials.

Highlights

  • Zero Setup: No API keys or signups required; auto-installs dependencies like curl_cffi and yt-dlp on first use.
  • Resilient Retrieval: Escalates through multiple retrieval methods until a public route is found.
  • Broad Platform Support: Works across X, Reddit, YouTube, Hacker News, LinkedIn, Medium, and more.
  • Strict Boundaries: Only accesses public content and explicitly stops at login walls or paywalls.

Related

  • Project
  • Project
  • Dispatch
  • Project
  • Project