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.
npx skills add 0xmariowu/Autosearch --skill fetch-crawl4aigit clone --depth 1 https://github.com/0xmariowu/AutosearchWrote 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.
[](https://agentmods.dev/skills/0xmariowu/autosearch/fetch-crawl4ai)<a href="https://agentmods.dev/skills/0xmariowu/autosearch/fetch-crawl4ai"><img src="https://agentmods.dev/badge/skills/0xmariowu/autosearch/fetch-crawl4ai/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.
<a href="https://agentmods.dev/skills/0xmariowu/autosearch/fetch-crawl4ai"><img src="https://agentmods.dev/badge/skills/0xmariowu/autosearch/fetch-crawl4ai.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00056 | $0.00671 |
| Opus 5 | $0.00028 | $0.00336 |
| Sonnet 5 | $0.00011 | $0.00134 |
| Haiku 4.5 | $0.00006 | $0.00067 |
Grade A, and why
fetch-crawl4ai scanned grade A with 1 finding 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 11d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
Call `fetch.py`'s sync `fetch(url: str, wait_for: str | None = None, timeout_seconds: float = 30.0)` function: How it starts
The opening of the file, as written. The whole thing — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Deep URL fetch through crawl4ai, backed by Playwright and Chromium. Use this as the fallback when fetch-jina fails, refuses a URL, returns an empty page, or cannot see JavaScript-rendered content.
Input Fit
- JavaScript-heavy SPAs where server HTML is mostly empty.
- Anti-bot or dynamic sites that block simple HTTP fetchers.
- Pages that need a CSS selector wait before extraction.
- Public pages where a local Chromium browser can render the content.
Invocation
Call fetch.py's sync fetch(url: str, wait_for: str | None = None, timeout_seconds: float = 30.0) function:
result = fetch("https://example.com/app", wait_for=".loaded")
Successful calls return:
{
"ok": True,
"markdown": "...",
"title": "Rendered page title",
"url": "https://example.com/final-url",
"meta": {
"status_code": 200,
"backend": "crawl4ai",
"browser": "chromium",
"elapsed_sec": 2.4,
},
"source": "https://example.com/app",
}
Failure Modes
- Missing
crawl4aipackage returnsreason: crawl4ai_unavailable. Install withpip install crawl4aiplusplaywright install chromium, or fall back tofetch-jina. - Browser or crawl4ai runtime failures return
reason: crawl4ai_runtime_errorwith the error message or stderr tail. - DNS, connection, and transport failures return
reason: network_error. - Slow pages that exceed
timeout_secondsreturnreason: timeout. - HTTP 403 or detectable challenge pages return
reason: anti_bot_blocked; degrade tofetch-playwrightorfetch-firecrawlpaid fallback. - Successful crawls with empty or too-short Markdown return
reason: empty_content.
Limits
- Requires user opt-in installation:
pip install crawl4ai. - Requires a Chromium browser installed for Playwright:
playwright install chromium. - This tool is slower and heavier than
fetch-jina; use it only when a simple fetch cannot retrieve the useful content. - It does not solve sites that require authentication, strong bot mitigation, paid proxies, or long interactive flows.
What ships with it
2 files 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.
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.
- 11d ago First seen · 71 lines · 56 tokens per session scan A 92994fd85658
fetch-crawl4ai is a skill published in the GitHub repository 0xmariowu/Autosearch (44 stars, last pushed 1mo ago), licensed MIT. It adds 56 tokens to every session and 671 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
vaaya
Vaaya is the payment system for agents: one MCP server that lets your agent call paid APIs pay-per-call with no API keys. Web search, scraping, image and video generation, code sandboxes, browser automation, email, phone calls, lead enrichment, live data. Priced in cents per call, billed only on success, and every…
scrape-strategy
Guide mode selection when site scraping is weak, blocked, or low quality. Use when the user asks why scraping failed or how Primr should proceed on a protected site.
captchasonic-solve
Solve a CAPTCHA using the CaptchaSonic MCP server. Supports all types — PopularCaptcha, reCAPTCHA, Geetest, OCR, AWS WAF, TikTok, Binance, Cloudflare Turnstile, and more. Provide an image (path, URL, or base64) and captcha type.
captchasonic
Solve CAPTCHAs using the CaptchaSonic AI API. Supports reCAPTCHA, Cloudflare Turnstile, Geetest, AWS WAF, TikTok, Binance, OCR, and more. Provides MCP server tools for health checks, balance queries, and captcha solving from any AI agent.
captchasonic-setup
Set up the CaptchaSonic MCP server for the first time. Installs the server, configures environment variables, and verifies connectivity. Use when a user wants to start using CaptchaSonic with their AI agent.
playwright-cli
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.