crawlforge-stealth-browsing

crawlforge-stealth-browsing is a skill for Claude Code, Codex from mysleekdesigns/crawlforge-mcp. It costs 137 tokens per session (1,138 once invoked), scanned A, original, MIT.

A web-browsing tool for accessing pages that block ordinary automated requests or show different content by region.

In plain words
What is it for?
Use it to retrieve JavaScript-rendered pages, pages protected by services such as Cloudflare, and region-specific prices or content.
Why use it?
It helps when a normal page request returns an access error, a CAPTCHA, an empty page, or region-restricted content.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to retrieve JavaScript-rendered pages, pages protected by services such as Cloudflare, and region-specific prices or content.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mysleekdesigns/crawlforge-mcp/crawlforge-stealth-browsing
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add mysleekdesigns/crawlforge-mcp --skill crawlforge-stealth-browsing
Clone the repo
git clone --depth 1 https://github.com/mysleekdesigns/crawlforge-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for crawlforge-stealth-browsing

README.md
[![agentmods](https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/crawlforge-stealth-browsing/github.svg)](https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/crawlforge-stealth-browsing)
Your own site
<a href="https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/crawlforge-stealth-browsing"><img src="https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/crawlforge-stealth-browsing/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for crawlforge-stealth-browsing

Your own site · 80×15
<a href="https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/crawlforge-stealth-browsing"><img src="https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/crawlforge-stealth-browsing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 137 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,138 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00137 $0.01138
Opus 5 $0.00068 $0.00569
Sonnet 5 $0.00027 $0.00228
Haiku 4.5 $0.00014 $0.00114

Measured 3d ago against content hash 1620106f2e82, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

crawlforge-stealth-browsing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/skills/agent-skills/crawlforge-stealth-browsing/SKILL.md · 112 lines

How it starts

The opening of the file, as written. The whole thing — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CrawlForge Stealth Browsing

Get past bot-detection systems and geo-blocks. Use stealth_mode when a normal scrape is blocked, and localization when you need region-specific content, pricing, or locale emulation.

When to escalate to stealth_mode

Escalate from a normal scrape / fetch_url (see crawlforge-web-scraping) when:

  • The site returns 403 or 429 on a regular fetch.
  • You get a CAPTCHA or a "please enable JavaScript" interstitial.
  • Content comes back empty or only a shell (JS-rendered SPA).
  • The site uses Cloudflare, DataDome, PerimeterX, or similar protection.

stealth_mode drives a real browser with randomized fingerprints, human behavior simulation, and WebRTC/canvas/WebGL spoofing.

When you already know the site blocks, scrape with escalate: true does both steps in one call: the plain fetch first, then the same stealth browser only if that fetch is walled. Projected at 7, charged 2 when the plain fetch worked. Still never reach for stealth_mode first.

stealth_mode (cost: 5)

stealth_mode is operation-based. Typical flow: create a context, then create a page that navigates to the target URL.

{
  "tool": "stealth_mode",
  "params": {
    "operation": "create_context",
    "stealthConfig": { "level": "advanced", "simulateHumanBehavior": true },
    "engine": "playwright"
  }
}

Then use the returned contextId:

{
  "tool": "stealth_mode",
  "params": { "operation": "create_page", "contextId": "<id-from-create_context>", "urlToTest": "https://protected-site.com" }
}

Operations: configure, enable, disable, create_context, create_page, get_stats, cleanup. stealthConfig.level is basic / medium (default) / advanced. Always run cleanup when done to release the browser.

Engine: playwright vs camoufox

  • engine:"playwright" (default) — Chromium with stealth patches. Fast, good for most basic bot detection.
  • engine:"camoufox" — Firefox-based with native anti-detection (no patches). Scores higher against DataDome / Cloudflare / PerimeterX and on CreepJS. Use for heavily protected, financial, or e-commerce sites.

Read the full file on GitHub · 112 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago Changed · +5 lines 1620106f2e82
  2. 4d ago Changed 9fc56d9a79b3
  3. 9d ago First seen · 107 lines · 137 tokens per session scan A 0dab9b4820d4

Subscribe to this mod's changes

crawlforge-stealth-browsing is a skill published in the GitHub repository mysleekdesigns/crawlforge-mcp (2 stars, last pushed yesterday), licensed MIT. It adds 137 tokens to every session and 1,138 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

nimble-web-expert

Get web data now — fast, incremental, immediately responsive to what the user needs. The only way Claude can access live websites. USE FOR: Fetching any URL or reading any webpage Scraping prices, listings, reviews, jobs, stats, docs from any site Running Extraction Templates — reusable, site-specific structured…

Nimbleway/agent-skills · 155 tokens

crw-dynamic-search

Programmatic web search and scrape with context isolation. Use for any research task where you need to search the web, filter results, and extract specific information — without flooding your context window with raw HTML and boilerplate. This is the single biggest token-saver in the crw skill set. Triggered by "search…

us/crw · 143 tokens

crw

Scrape, crawl, map, and search the web using fastCRW's native /v1 API. Use when the user needs web page content, site-wide extraction, URL discovery, or web search results. Single binary, 14 MB RAM; /v2 exists separately for Firecrawl migration.

us/crw · 64 tokens

crw

Scrape, crawl, map, and search the web using fastCRW's native /v1 API. Use when the user needs web page content, site-wide extraction, URL discovery, or web search results. Single binary, 14 MB RAM; /v2 exists separately for Firecrawl migration.

us/crw · 64 tokens

crw-watch

Detect what changed between two page snapshots with fastCRW — stateless diff as a REST primitive. Use when you need to track content changes, monitor a page for updates, or build a cron-based alert system: "has this page changed?", "alert me when pricing changes", "diff this week's scrape against last week's". Step 7…

us/crw · 81 tokens

chrome-devtools

Use Chrome DevTools MCP to control and inspect a live Chrome instance for network, console, performance, rendering, and Deep debugging. Pairs with playwright-cli (deterministic interaction/E2E) — complements, not duplicates.

ulises-jeremias/agent-toolkit · 50 tokens