Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
brettdavies avatar

Crawl4ai

  • 847 installs
  • 42 repo stars
  • Updated June 16, 2026
  • brettdavies/crawl4ai-skill

crawl4ai is a Claude Code skill that teaches the Crawl4AI CLI to convert public webpages into clean markdown, structured JSON, or LLM-ready data for developers who need agent-grade web extraction without custom scrapers.

About

crawl4ai is a skill from brettdavies/crawl4ai-skill documenting the Crawl4AI command-line interface for web crawling and extraction. The readme covers installation, basic usage, browser configuration, crawler configuration, extraction configuration, and advanced features including LLM Q&A and structured data extraction. Developers reach for crawl4ai when they need repeatable CLI commands to turn arbitrary public URLs into markdown or JSON suitable for RAG pipelines, eval datasets, or agent context—without maintaining bespoke BeautifulSoup or Playwright scripts. The guide is organized as a Tier 2 CLI reference with configuration sections for browser, crawler, and extraction behavior.

  • CLI command `crwl` for instant web crawling and markdown conversion
  • Supports structured data extraction, LLM Q&A, and content filtering
  • Multiple output formats including markdown, JSON, and cleaned HTML
  • Advanced configuration for browser, crawler, and extraction behavior
  • Built-in caching, cache-bypass, and verbose logging options

Crawl4ai by the numbers

  • 847 all-time installs (skills.sh)
  • +31 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #1,282 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Security screen: HIGH risk (skills.sh audit)
  • Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/brettdavies/crawl4ai-skill --skill crawl4ai

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs847
repo stars42
Security audit2 / 3 scanners passed
Last updatedJune 16, 2026
Repositorybrettdavies/crawl4ai-skill

How do you scrape webpages into LLM-ready markdown?

Turn any public webpage into clean markdown, structured JSON, or LLM-ready data without writing custom scrapers.

Who is it for?

Developers building RAG ingestion, agent context pipelines, or data extraction jobs who want Crawl4AI CLI patterns instead of custom scrapers.

Skip if: Teams crawling authenticated private apps or needing full browser-test automation rather than public-page extraction CLI workflows.

When should I use this skill?

A developer needs to crawl a public URL into markdown or JSON using Crawl4AI CLI with browser, crawler, or extraction configuration.

What you get

Clean markdown files, structured JSON extracts, and configured Crawl4AI CLI crawl outputs from target URLs.

  • Markdown crawl output
  • Structured JSON extracts

Files

SKILL.mdMarkdownGitHub ↗

Crawl4AI

Verified against `crawl4ai` `VERSION`. PEP 723 pins in scripts/*.py and tests/*.py floor at that version.

Overview

Crawl4AI wraps a headless browser (Playwright) plus a markdown-aware content pipeline. Use it when defuddle/curl can't reach the content — JavaScript-rendered pages, login-gated content, infinite scroll, multi-URL concurrency, repeatable schema-based extraction.

This skill exposes both interfaces of the underlying library:

  • CLI (crwl) — quick, scriptable commands: CLI Guide
  • Python SDK — full programmatic control: SDK Guide

Invoked with a URL argument

When the user runs /crawl4ai <url> with a single URL and no further qualifier, treat it as the JS-heavy fetch case and default to:

crwl <url> -c "wait_until=networkidle,page_timeout=60000" -o markdown

wait_until=networkidle waits for the network to be quiet for ~500ms post-load — the right default when the user hasn't named a specific element on a JS-rendered page. (Avoid wait_for=css:body: <body> exists at t=0 on every HTML response, so it's satisfied before JS renders content.) Then return the markdown to the agent context. Adjust to wait_for=css:<selector> if the user named a specific element. Skip the default and route to the relevant section below for any task that names extraction, batch / multi-URL, login / session, screenshot / PDF, or URL discovery — those each have their own pipeline. If the URL is clearly static (a docs page, a blog post), route the user to /fetch-web instead per the "When NOT to use" section below.

When NOT to use this skill

  • Static HTML pages (most documentation sites, blog posts, news articles, tweets) — use /fetch-web or defuddle

directly. Static extraction is ~0ms cold start; crawl4ai pays a ~2s browser startup tax.

  • Local file conversion (.pdf, .docx, .pptx, .epub) — use /markdown-convert.
  • One-URL agent-context reads (the agent just needs to read this page) — use /fetch-web and let it route to

defuddle.

  • Mutating UI flows (form fills, multi-step clicks, login + navigation) — /browse (gstack's persistent headless

Chromium) is built for that.

When stuck

For unknown crwl/SDK flags, scrape failures, or extraction edge cases the references don't cover, see references/escalation.md for the lookup order (qmd solutions → upstream docs → GitHub issues → ask the user) and worked examples.

---

Quick Start

Installation

pip install crawl4ai
crawl4ai-setup

# Verify installation
crawl4ai-doctor

CLI (Recommended)

# Basic crawling - returns markdown
crwl https://example.com

# Get markdown output
crwl https://example.com -o markdown

# JSON output with cache bypass
crwl https://example.com -o json -v --bypass-cache

# See more examples
crwl --example

Python SDK

import asyncio
from crawl4ai import AsyncWebCrawler

async def main():
    async with AsyncWebCrawler() as crawler:
        result = await crawler.arun("https://example.com")
        print(result.markdown[:500])

asyncio.run(main())

For SDK configuration details: SDK Guide - Configuration.

---

Core Concepts

Configuration Layers

Both CLI and SDK use the same underlying configuration:

ConceptCLISDK
Browser settings-B browser.yml or -b "param=value"BrowserConfig(...)
Crawl settings-C crawler.yml or -c "param=value"CrawlerRunConfig(...)
Extraction-e extract.yml -s schema.jsonextraction_strategy=...
Content filter-f filter.ymlmarkdown_generator=...

Key Parameters

Browser Configuration:

  • headless: Run with/without GUI
  • viewport_width/height: Browser dimensions
  • user_agent: Custom user agent
  • proxy_config: Proxy settings

Crawler Configuration:

  • page_timeout: Max page load time (ms)
  • wait_for: CSS selector or JS condition to wait for
  • cache_mode: bypass, enabled, disabled
  • js_code: JavaScript to execute
  • css_selector: Focus on specific element

For complete parameters: CLI Config | SDK Config

Output Content

Every crawl returns:

  • markdown - Clean, formatted markdown
  • html - Raw HTML
  • links - Internal and external links discovered
  • media - Images, videos, audio found
  • extracted_content - Structured data (if extraction configured)

---

Markdown Generation (Primary Use Case)

Crawl4AI excels at generating clean, well-formatted markdown.

CLI

crwl https://docs.example.com -o markdown                              # raw markdown
crwl https://docs.example.com -o markdown-fit                          # filtered (noise removed)
crwl https://docs.example.com -f templates/filter_bm25.yml -o markdown-fit   # BM25-relevance filter
crwl https://docs.example.com -f templates/filter_pruning.yml -o markdown-fit # quality-based filter

Filter templates: `templates/filter_bm25.yml` (relevance-scored against a query), `templates/filter_pruning.yml` (no query, prunes low-quality blocks).

Python SDK

from crawl4ai.content_filter_strategy import BM25ContentFilter
from crawl4ai.markdown_generation_strategy import DefaultMarkdownGenerator

bm25_filter = BM25ContentFilter(user_query="machine learning", bm25_threshold=1.0)
md_generator = DefaultMarkdownGenerator(content_filter=bm25_filter)

config = CrawlerRunConfig(markdown_generator=md_generator)
result = await crawler.arun(url, config=config)

print(result.markdown.fit_markdown)  # Filtered
print(result.markdown.raw_markdown)  # Original

For filter selection and config field reference, see Content Filters.

---

Data Extraction

1. Schema-Based CSS Extraction (Most Efficient)

No LLM required at extract time — fast, deterministic, cost-free. One-time LLM cost to derive the schema, then reuse indefinitely. The bundled scripts split the pipeline by responsibility:

./scripts/generate_schema.py https://shop.example.com "products with name, price, image" shop_schema.json
./scripts/extract_with_schema.py https://shop.example.com shop_schema.json products.json

Or via the CLI with the YAML strategy template + the saved schema:

crwl https://shop.example.com -e templates/extract_css.yml -s shop_schema.json -o json

Schema skeleton: `templates/css_schema.json`. Strategy YAML: `templates/extract_css.yml`.

2. LLM-Based Extraction

For one-off / irregular content where a CSS schema is too brittle:

./scripts/extract_with_llm.py https://news.example.com "Extract headlines, dates, summaries" news.json

Or via the CLI with the strategy template:

crwl https://news.example.com -e templates/extract_llm.yml -o json

Strategy YAML: `templates/extract_llm.yml`. Pays an LLM call per URL — for repeat extraction, prefer the schema pipeline above.

For extraction strategy reference: Extraction Strategies.

---

Advanced Patterns

Dynamic Content (JavaScript-Heavy Sites)

crwl https://example.com -c "wait_for=css:.ajax-content,scan_full_page=true,page_timeout=60000"
crwl https://example.com -C templates/crawler.yml                          # all options in a YAML file

Crawler config template: `templates/crawler.yml`.

Multi-URL Processing

./scripts/batch_crawl.py urls.txt --max-concurrent 5 --out batch_markdown/
./scripts/batch_extract.py urls.txt shop_schema.json --max-concurrent 5 --out products.json

The two scripts split on responsibility: batch_crawl.py returns markdown per URL; batch_extract.py returns schema-extracted JSON per URL. Python equivalent uses arun_many():

urls = ["https://site1.com", "https://site2.com", "https://site3.com"]
results = await crawler.arun_many(urls, config=config)

For batch processing reference: arun_many() Reference.

URL Discovery Before Crawl

When the URL list comes from a sitemap / domain rather than a known list, do discovery first, then feed the result into batch_crawl.py / batch_extract.py. See URL Discovery for the full surface; quick shape:

from crawl4ai import AsyncUrlSeeder, SeedingConfig
seeds = await AsyncUrlSeeder().urls("example.com", SeedingConfig(
    source="sitemap+cc", pattern="*/blog/*", query="machine learning", score_threshold=0.3, live_check=True,
))
urls = [s["url"] for s in seeds]

AsyncUrlSeeder is best when you want BM25-scored filtering against a query; DomainMapper is best when you want maximum coverage of one domain.

Session & Authentication

Fill the login template, then reuse the session id on subsequent crawls:

crwl https://site.com/login -C templates/login_crawler.yml
crwl https://site.com/protected -c "session_id=user_session"

Login template: `templates/login_crawler.yml` (fill in the field-id selectors and the post-login wait condition before use).

For session management reference: Advanced Features.

Anti-Detection & Proxies

crwl https://example.com -B templates/browser.yml

Browser config template: `templates/browser.yml` (uncomment proxy_config and init_scripts as needed). For pre-page-load script injection (fingerprint patches that must fire before any site script), populate init_scripts: rather than js_code: (which fires after the page loads). proxy_config works with both the browser strategy and the non-browser HTTPCrawlerStrategy — the latter is the cheap path for static fetches behind a corporate proxy.

Full surface (CDP attachment, undetected mode, init script patterns): Anti-Detection.

Rendering Cached HTML (raw: / file://)

If the agent already has HTML in hand (e.g., from defuddle or a previous crawl) and only needs a screenshot, PDF, or MHTML render, skip the network fetch and pass the HTML directly. base_url controls relative-link resolution:

result = await crawler.arun(
    url="raw:" + html_string,
    config=CrawlerRunConfig(base_url="https://example.com", screenshot=True, pdf=True),
)
result = await crawler.arun(
    url="file:///path/to/page.html",
    config=CrawlerRunConfig(screenshot=True),
)

---

Common Use Cases

Eight worked end-to-end flows (docs page, JS-heavy SPA, e-commerce product extraction, news aggregation, topic-bound domain crawl, login-required content, render existing HTML, Q&A) live in Recipes. Pick the recipe closest to the task at hand and adapt.

---

Resources

Provided Scripts

ScriptResponsibility
scripts/basic_crawler.py <url>One URL → markdown + screenshot
scripts/batch_crawl.py <urls.txt>Many URLs → markdown files
scripts/batch_extract.py <urls.txt> <schema.json>Many URLs + schema → JSON
scripts/generate_schema.py <url> "<instruction>"Derive a reusable CSS schema (one-time LLM call)
scripts/extract_with_schema.py <url> <schema.json>Apply a saved schema (no LLM)
scripts/extract_with_llm.py <url> "<instruction>"Per-request LLM extraction (expensive; one-off only)

Templates

YAML and JSON skeletons users copy and fill. All sit at the skill root under templates/:

TemplateUsed for
templates/browser.ymlBrowserConfig (headless, proxy, user agent, init scripts)
templates/crawler.ymlCrawlerRunConfig (cache, wait, timeout, JS)
templates/extract_css.ymlJsonCssExtractionStrategy declaration
templates/extract_llm.ymlLLMExtractionStrategy declaration
templates/filter_bm25.ymlBM25 content filter (relevance-scored)
templates/filter_pruning.ymlPruning content filter (quality-based, no query)
templates/login_crawler.ymlSession-establishing login flow
templates/css_schema.jsonCSS schema skeleton

Reference Documentation

DocumentPurpose
CLI GuideCommand-line interface reference
SDK GuidePython SDK quick reference
RecipesEight worked end-to-end flows
URL DiscoveryAsyncUrlSeeder, SeedingConfig, DomainMapper
Content FiltersBM25 vs Pruning vs LLMContentFilter — when to use which
Anti-Detectioninit_scripts, proxy_config, undetected mode, CDP attachment
TroubleshootingSymptoms, causes, fixes; what to try before escalating
Complete SDK ReferenceFull API documentation (5900+ lines)
EscalationLookup order, iron rule, halt-vs-continue, worked examples

---

Best Practices

1. Start with CLI for quick tasks, SDK for automation 2. Use schema-based extraction - 10-100x more efficient than LLM 3. Enable caching during development - --bypass-cache only when needed 4. Set appropriate timeouts - 30s normal, 60s+ for JS-heavy sites 5. Use content filters for cleaner, focused markdown 6. Respect rate limits - Add delays between requests

---

Troubleshooting

For symptom → cause → fix tables (JS not loading, bot detection, empty extracted content, session not persisting, slow crawl, schema generation nonsense, post-upgrade regressions), see Troubleshooting. For unknown surface the references don't cover, follow Escalation.

---

For comprehensive API documentation, see Complete SDK Reference.

License

Dual-licensed under MIT OR Apache-2.0 at your option (SPDX: MIT OR Apache-2.0). See LICENSE for the explainer + the carve-out for the upstream-mirrored references/complete-sdk-reference.md.

Related skills

How it compares

Pick crawl4ai for CLI-based public-page-to-markdown pipelines; use browser MCP skills when live interactive page control is required.

FAQ

What output formats does the crawl4ai skill support?

crawl4ai documents Crawl4AI CLI workflows for clean markdown, structured JSON, and LLM-ready extracted data from public webpages. Advanced sections cover LLM Q&A and structured data extraction configuration.

What configuration areas does crawl4ai cover?

crawl4ai covers browser configuration, crawler configuration, and extraction configuration in the CLI guide. Developers can tune crawl behavior before piping results into RAG or agent pipelines.

Is Crawl4ai safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

AI & Agent Buildingagentsautomationresearch

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.