An agentic skills framework & software development methodology that works.
Crawl4AI skill for Claude Code and other agents
This skill adds Crawl4AI-based crawling and extraction to agent hosts that load `SKILL.md` bundles. It covers JS-aware page rendering, schema-based data extraction, LLM extraction, filtering, batch crawling, and persistent sessions.
Builders who want their agent to crawl JavaScript-heavy sites and extract structured data with reusable schemas.
You can turn web pages into markdown or JSON with less re-explaining and fewer one-off extraction prompts.
What it does
JavaScript-aware crawling
Renders pages in a headless browser with `wait_until=networkidle` defaults so dynamic sites are captured.
Schema-based extraction
Derives a CSS selector schema once with an LLM and reuses it later without paying that cost again.
LLM extraction
Supports one-off structured extraction when a reusable schema is not worth creating.
Content filtering
Includes BM25 relevance filtering and quality pruning, with markdown and markdown-fit output modes.
Concurrent batch crawling
Processes many URLs with per-job concurrency limits.
Session management
Keeps persistent sessions for authenticated and multi-step flows.
CLI and SDK support
Wraps both the `crwl` command-line tool and the `crawl4ai` Python SDK.
How to get it
- 1Clone the repo into the skills directory your agent host loads from
# Claude Code git clone https://github.com/brettdavies/crawl4ai-skill.git ~/.claude/skills/crawl4ai
- 2CLI
crwl https://example.com -c "wait_until=networkidle,page_timeout=60000" -o markdown crwl https://example.com -o json -v --bypass-cache
README
Crawl4AI Agent Skill
Scrape JavaScript-heavy sites and extract structured data via reusable CSS schemas. A portable agent skill that wraps the Crawl4AI CLI and Python SDK, written in the Anthropic SKILL.md format and consumable by any agent host that loads SKILL.md-format bundles (Claude Code, Codex, Cursor, OpenCode, Cline, and others).
Verified against Crawl4AI library version 0.8.9 (pinned in VERSION).
Features
- JS-aware crawling: full headless-browser rendering with
wait_until=networkidledefaults - Schema-based extraction: derive a CSS selector schema once via LLM, apply it forever with no further LLM cost
- LLM extraction: per-request structured extraction when a schema is not worth deriving
- Content filtering: BM25 relevance filter and quality-based pruning, plain markdown or markdown-fit output
- Concurrent batch crawling: multi-URL processing with per-job concurrency caps
- Session management: persistent sessions for authenticated, multi-step flows
- CLI and SDK: both the
crwlcommand-line tool and thecrawl4aiPython SDK
Installation
Clone the repo into the skills directory your agent host loads from:
# Claude Code
git clone https://github.com/brettdavies/crawl4ai-skill.git ~/.claude/skills/crawl4ai
For other agent hosts (Codex, Cursor, OpenCode, Cline, custom agents), clone into whichever directory your host scans
for SKILL.md-format bundles. Refer to your host's documentation for the skills directory location. The bundle root
contains SKILL.md, so the skill registers automatically once the directory is on the host's skills search path.
Prerequisites
The skill calls into the Crawl4AI Python library, which must be installed in the runtime your agent uses:
pip install crawl4ai
crawl4ai-setup
crawl4ai-doctor
crawl4ai-doctor validates the install and confirms a headless browser is available.
Quick start
CLI:
crwl https://example.com -c "wait_until=networkidle,page_timeout=60000" -o markdown
crwl https://example.com -o json -v --bypass-cache
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())
Bundle layout
| Path | Contents |
|---|---|
SKILL.md | Entry point: trigger conditions, defaults, routing to specialized pipelines |
references/ | Nine reference guides for CLI, SDK, extraction, filtering, anti-detection, URL discovery, escalation |
scripts/ | Six PEP 723 helper scripts for crawl / extract / batch workflows |
templates/ | Reusable YAML/JSON templates for browser, crawler, filters, and extraction strategies |
evals/ | Four eval scenarios for verifying skill behavior end-to-end |
fixtures/ | Schema-generation reference fixture (sample HTML, expected schema, expected JSON output) |
tests/ | Pytest suite covering basic crawling, markdown generation, extraction, advanced patterns, and fixtures |
VERSION | Pinned Crawl4AI library version the skill is verified against |
LICENSE-APACHE, LICENSE-MIT, LICENSE | Dual license texts and summary (SPDX MIT OR Apache-2.0) |
Documentation
- SKILL.md: complete skill documentation with examples
- CLI Guide: command-line interface reference
- SDK Guide: Python SDK quick reference
- Complete SDK Reference: full API documentation (5900+ lines)
- Recipes: end-to-end task recipes (login flow, sitemap crawl, paginated extraction)
- Content Filters: BM25 vs pruning vs LLMContentFilter trade-offs
- URL Discovery: sitemap, robots.txt, link-graph traversal
- Anti-Detection: init scripts, proxy config, undetected mode, CDP attachment
- Troubleshooting: symptoms, causes, fixes
- Escalation: lookup order, halt-vs-continue criteria, worked examples
Common use cases
Documentation to markdown
crwl https://docs.example.com -o markdown > docs.md
E-commerce product monitoring
# Derive the schema once (uses LLM)
./scripts/generate_schema.py https://shop.example.com "products with name, price, image" shop_schema.json
# Apply the saved schema (no LLM cost per request)
./scripts/extract_with_schema.py https://shop.example.com shop_schema.json products.json
News aggregation with relevance filtering
for url in news1.com news2.com news3.com; do
crwl "https://$url" -f templates/filter_bm25.yml -o markdown-fit
done
Scripts
| Script | Purpose |
|---|---|
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) |
Testing
cd tests
python run_all_tests.py
License
Dual-licensed under Apache License 2.0 (LICENSE-APACHE) or MIT License (LICENSE-MIT) at
your option. SPDX identifier: MIT OR Apache-2.0. See LICENSE for the full notice.
Contributing
Contributions welcome. Open a pull request.
Changelog
See CHANGELOG.md.
Files in the repo
- .github
- evals
- fixtures
- references
- scripts
- templates
- tests
- .gitignore
- .markdownlint-cli2.yaml
- AGENTS.md
- CHANGELOG.md
- CONTRIBUTING.md
- LICENSE
- LICENSE-APACHE
- LICENSE-MIT
- README.md
- SKILL.md
- VERSION
Discussion (0)
Ask about usage, or say what you built with itSign in to join the discussion.
No comments yet. Be the first to say what this is good for.
More skills

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.
Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.
Public repository for Agent Skills
Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

Production-grade engineering skills for AI coding agents.