‹ 首页

insane-browsing

@toongri · 收录于 昨天 · 上游提交 昨天

Escalation skill for blocked or hard-to-reach web access — load it when a normal browse/fetch is blocked (WAF, 403, Cloudflare, JS-only render, login-gated, or a platform a generic fetcher cannot read). Tiered router: TIER 1 insane-search (headless extraction + WAF bypass via curl_cffi TLS impersonation, yt-dlp, Jina Reader, public APIs, Playwright real-Chrome fallback); TIER 2 agent-reach (platform-native readers for Chinese and social platforms: Xiaohongshu, Douyin, Weibo, Bilibili, V2EX, WeChat, plus Twitter/Reddit/LinkedIn/GitHub); TIER 3 Chrome stealth (CloakBrowser stealth Chromium + agent-browser CDP for clicks, forms, screenshots, video, cookie login). Triggers: blocked site, bypass bot detection, cloudflare/WAF bypass, scrape, stealth browser, import cookies, fill form, screenshot, play youtube, xiaohongshu, douyin, weibo, bilibili, v2ex, wechat article, podcast transcript. NOT for simple searches (use web-search) or plain fetches (use webfetch).

适合你,如果经常需要抓取受限网站数据却遇到反爬屏障

/ 通过 npx 安装 校验哈希
npx oh-my-skill add toongri/oh-my-toong-playground/insane-browsing
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- toongri/oh-my-toong-playground/insane-browsing
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify toongri/oh-my-toong-playground/insane-browsing
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
25GitHub stars
~2.7K最小装载
~16K含声明引用
~59.4K文本包总量
索引托管

怎么用

商店整理自技能原文 · 版本 731a80a · 表述以原文为准
它做什么

当普通浏览无法获取网页内容时(如遇到封锁、403、Cloudflare、JS渲染、登录墙等),技能会自动尝试三级方案:先用无头浏览器绕过封锁,再用平台原生读取器(如小红书、抖音等),最后用隐身Chrome进行点击、截图等交互操作。

什么时候触发

当你访问的页面被封锁、需要绕过机器人检测、遇到Cloudflare/WAF阻挡,或者要抓取/截图/填写表单时触发。普通搜索请使用web-search。

装好后可以这样说
技能会调用Tier3的隐身Chrome进行操作。
技能会用yt-dlp下载字幕。
技能原文 SKILL.md作者撰写 · MIT · 731a80a

Insane Browsing

Escalation web access for tasks a normal browse or fetch cannot complete. Reach for this skill the moment a page is blocked (WAF / 403 / Cloudflare), needs JS rendering, hides behind a login, or lives on a platform a generic fetcher cannot read. Escalate only when the cheaper tier cannot do the job:

Tier 1 — insane-search (headless extraction + WAF bypass) -> Tier 2 — agent-reach (platform-native APIs, esp. Chinese platforms) -> Tier 3 — Chrome stealth (real interaction via CloakBrowser + agent-browser).

PHASE 0 — ROUTE FIRST (MANDATORY)
User request
  |
  +- extract text/data from a URL --------------------- TIER 1  insane-search
  +- URL blocked / 403 / Cloudflare / WAF ------------- TIER 1  insane-search
  +- YouTube/Vimeo/TikTok subtitles or metadata ------- TIER 1  insane-search (yt-dlp)
  +- read an article / blog / Reddit / HN / arXiv ----- TIER 1  insane-search
  |
  +- Chinese platform (xhs/douyin/weibo/bilibili/v2ex/wechat)  TIER 2 agent-reach
  +- podcast transcript / stock forum ----------------- TIER 2 agent-reach
  +- Twitter feed / LinkedIn profile / GitHub via CLI - TIER 2 agent-reach
  |
  +- Tier 1/2 returned empty or partial ------------- TIER 3  Chrome stealth
  +- click / fill form / scroll / interact ------------ TIER 3  Chrome stealth
  +- screenshot / render / play video ----------------- TIER 3  Chrome stealth
  +- login session across pages / inject cookies ------ TIER 3  Chrome stealth
  +- test web app / QA / dogfood ---------------------- TIER 3  Chrome stealth
  |
  +- simple search query ------------------------------ NOT this skill (use web-search)

Read the matching reference before acting: [references/insane-search/README.md](references/insane-search/README.md), [references/agent-reach/README.md](references/agent-reach/README.md), or [references/chrome-stealth.md](references/chrome-stealth.md).

Tier 1 — insane-search (headless extraction)

When: content extraction, blocked-URL bypass, media metadata — no browser UI needed. Why first: ~10x faster than a browser, no process spin-up; handles most "fetch this blocked page" requests via curl_cffi TLS impersonation, yt-dlp (1858 sites), Jina Reader, official public APIs, mobile URL transforms, and a Playwright real-Chrome fallback. The engine lives inside this skill at engine/ and is invoked as a module.

# Core command — auto-detects WAF, runs the full fetch grid.
# Must cd into the skill dir: the engine is a package with relative imports (python -m engine
# resolves them; a direct script path crashes). uv resolves deps into an isolated cached venv
# from requirements.txt on first call (curl_cffi, beautifulsoup4, PyYAML pinned).
(cd "$REPO/$SKILL_DIR" && uv run --python 3.10 --with-requirements requirements.txt python -m engine "https://example.com/blocked-page")
#   add --selector "<CSS>" for positive-proof validation, --device auto|desktop|mobile,
#   --trace to inspect every attempt, --json for machine-readable output.

# YouTube subtitles / metadata (no browser):
yt-dlp --write-sub --write-auto-sub --sub-lang "en,ko" --skip-download -o "/tmp/%(id)s" "<URL>"

# Reddit / HN / Bluesky / arXiv etc. use official public endpoints — see the Phase 0 index in
# references/insane-search/README.md (Twitter syndication, Reddit .json, HN Firebase, ...).

The full engine harness (rules R1-R7, the Phase 0 official-API index, the no-site-name rule, and the references/insane-search/*.md deep-dives for TLS, Playwright routing, Naver, media, etc.) is in [references/insane-search/README.md](references/insane-search/README.md). Read it before tuning the engine or adding a WAF profile.

Playwright fallback — one-time setup

The Playwright real-Chrome fallback (playwright_real_chrome.js / playwright_mobile_chrome.js) is invoked via Node.js with cwd=engine/templates/. Node's require('playwright') resolves from that directory upward — not from npm's global prefix — so npm i -g does not work. Install locally into engine/templates/:

# Run once from the skill dir (engine/templates/package.json already declares the deps):
(cd "$REPO/$SKILL_DIR/engine/templates" && npm install && npx playwright install chrome)

engine/templates/package.json declares playwright, playwright-extra, and puppeteer-extra-plugin-stealth; npm install (no flags) is all that is needed.

Escalate to Tier 2 or Tier 3 when
  • The target is a Chinese / social platform with a native reader -> Tier 2.
  • insane-search returns empty/partial, or the page needs JS interaction, a screenshot, a persistent login, or media playback -> Tier 3.
Tier 2 — agent-reach (platform-native readers)

When: the target is a platform with a first-class API/CLI that beats generic fetching — especially Chinese platforms that stealth browsers still cannot reach cleanly. Several channels are zero-config (Douyin, Weibo via Jina, V2EX, Reddit, Jina Reader, RSS, YouTube); others need a one-time auth you supply via environment variables if you have access.

One-time isolated setup (agent-reach)

agent-reach is an external tool — not vendored here and not installed by make sync. Install it once, in isolation, before first use:

# Step 1: install the agent-reach tool itself (pick one; both are isolated):
pipx install agent-reach          # recommended: pipx keeps it isolated
# OR: uv tool install agent-reach  # uv tool alternative

# Step 2: install agent-reach channel plugins:
agent-reach install

# Step 3: verify install and check cookie-channel auth prerequisites:
agent-reach doctor
# agent-reach doctor reports which cookie-channel logins are present and which are missing.
# Cookie-channel logins are one-time-manual: log into the platform in a Chromium-family browser,
# then run scripts/extract_cookies.py to capture and inject those cookies.

This is a one-time operator setup step, NOT an automated make sync step. make sync deploys skill files; it does not install or configure agent-reach.

| Category | Platforms | Entry | |---|---|---| | social | xhs (Xiaohongshu), douyin, weibo, bilibili, V2EX, Reddit, Twitter/X | [references/agent-reach/social.md](references/agent-reach/social.md) | | web | Jina Reader, WeChat articles, RSS | [references/agent-reach/web.md](references/agent-reach/web.md) | | video | YouTube, Bilibili, podcast transcripts, Douyin video | [references/agent-reach/video.md](references/agent-reach/video.md) | | career | LinkedIn | [references/agent-reach/career.md](references/agent-reach/career.md) | | dev | GitHub (gh CLI) | [references/agent-reach/dev.md](references/agent-reach/dev.md) | | search | Exa AI | [references/agent-reach/search.md](references/agent-reach/search.md) |

mcporter call 'douyin.parse_douyin_video_info(url: "<URL>")'   # douyin, zero-config
curl -s "https://r.jina.ai/https://weibo.com/<uid>/<pid>"      # weibo via Jina
yt-dlp --dump-json "<bilibili-url>"                            # Bilibili (overseas: add --cookies-from-browser)
curl -s "https://www.v2ex.com/api/topics/hot.json"            # V2EX public API

Routing table, per-platform auth (set TWITTER_* env vars, gh auth login, a transcription key — only if you have access), rate-limit notes, and known version quirks are in [references/agent-reach/README.md](references/agent-reach/README.md).

Tier 3 — Chrome stealth (real interaction)

When: real interaction is needed (clicks, forms, screenshots, video, persistent login), or Tier 1/2 failed.

CloakBrowser is a stealth Chromium with source-level fingerprint patches that passes Cloudflare Turnstile, FingerprintJS, BrowserScan, and 30+ detectors; agent-browser is the CDP automation CLI that drives it. Both are runtime-installed tools (not vendored here). Full setup, version pins, launch flow, cookie login, and cross-platform notes are in [references/chrome-stealth.md](references/chrome-stealth.md).

# 1. Launch CloakBrowser with CDP on :9242 (see chrome-stealth.md for install + venv).
# 2. CloakBrowser launches tabless — open the first tab via CDP before any agent-browser command:
curl -s -X PUT "http://127.0.0.1:9242/json/new?https://example.com"
# 3. Drive it with agent-browser over CDP:
agent-browser --cdp 9242 snapshot -i        # interactive elements (@eN refs)
agent-browser --cdp 9242 click @e3
agent-browser --cdp 9242 screenshot out.png
agent-browser --cdp 9242 close
Cookie login (cross-platform)

scripts/extract_cookies.py reads cookies from a local Chromium-family or Firefox-family browser and optionally injects them into the running CDP session. It resolves browser profile paths and decrypts cookie values per-OS (macOS Keychain, Linux libsecret, Windows DPAPI):

# Extract cookies to a file (uv provides cryptography in an isolated env):
mkdir -p ~/.local/state/insane-browsing-cookies
uv run --python 3.11 --with cryptography python scripts/extract_cookies.py --browser chrome --domain youtube.com --output ~/.local/state/insane-browsing-cookies/youtube.cookies.json
# Extract and inject into the running CDP session:
uv run --python 3.11 --with cryptography python scripts/extract_cookies.py --browser chrome --domain youtube.com --inject --cdp 9242

Cookie export files are written with owner-only 0600 permissions. Do not place live auth cookies in shared temp directories or commit them to a repo. Cookie injection sends values to CDP over stdin rather than argv. Cookies apply on next navigation — reload after injecting. Google services use fingerprint-bound tokens that may not transfer across browser profiles. Full detail in [references/chrome-stealth.md](references/chrome-stealth.md).

Reference docs

| File | When to read | |------|-------------| | [references/insane-search/README.md](references/insane-search/README.md) | Tier-1 engine harness (R1-R7, Phase 0 API index, no-site-name rule) + its *.md deep-dives | | [references/agent-reach/README.md](references/agent-reach/README.md) | Tier-2 routing table, platform auth, per-category *.md | | [references/chrome-stealth.md](references/chrome-stealth.md) | Tier-3 CloakBrowser + agent-browser install, CDP flow, version pins, cookie login |

Environment variables
CLOAK_CDP_PORT=9242              # CloakBrowser CDP port (default 9242)
AGENT_BROWSER_USER_AGENT="..."   # override UA to hide HeadlessChrome
AGENT_BROWSER_HEADED=1           # show the browser window
# agent-reach auth: set the channel-specific env vars from each tool's docs only if you have access
# insane-search engine deps (curl_cffi, beautifulsoup4, PyYAML) are declared in requirements.txt
# and resolved by uv into an isolated cached venv on first call — no env var required
Anti-patterns
  • Do NOT launch Chrome stealth for plain text extraction — use Tier 1.
  • Do NOT pass an --init-script for the webdriver flag — CloakBrowser already patches it at source; the only required override is --user-agent.
  • Do NOT run agent-browser before creating the first tab via curl -X PUT .../json/new — CloakBrowser launches tabless.
  • Do NOT use vanilla Chrome when stealth is needed — always CloakBrowser.
  • Do NOT forget to close the session when done.
  • Do NOT inject cookies without reloading the page.
  • Do NOT hardcode site domains/selectors into engine/** or waf_profiles.yaml — runtime hints only (see the no-site-name rule in the insane-search reference).
按 MIT 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。