← スキル一覧に戻る

crawl4ai
by alexjx
⭐ 0🍴 0📅 2026年1月6日
SKILL.md
name: crawl4ai description: Web crawler that converts URLs to clean markdown. Use when user wants to fetch a webpage, extract web content, convert URL to markdown, or scrape website content.
Crawl4AI Web Crawler
Converts web pages to clean, LLM-friendly markdown using crawl4ai.
Requirements
uvmust be installed (https://docs.astral.sh/uv/)- The skill manages its own isolated Python environment via
uv sync
Setup
Before first use, run the setup script:
skills/crawl4ai/scripts/setup.sh
This will:
- Check for
uvinstallation - Run
uv syncto create.venv/and install dependencies - Run
crawl4ai-setupto install playwright browsers - Run
crawl4ai-doctorto verify installation
Usage
To crawl a URL and get markdown (from the skill directory):
cd skills/crawl4ai
uv run python scripts/crawl.py "https://example.com"
Options:
--output FILE- Save markdown to file instead of stdout--include-links- Include hyperlinks in markdown output--include-images- Include image references--no-headless- Show browser window (default: headless)--timeout SECONDS- Page load timeout (default: 30)
Examples
Basic crawl
cd skills/crawl4ai
uv run python scripts/crawl.py "https://docs.python.org/3/"
Save to file
uv run python scripts/crawl.py "https://example.com" --output content.md
With all options
uv run python scripts/crawl.py "https://example.com" \
--include-links \
--include-images \
--timeout 60 \
--output result.md
Troubleshooting
If crawling fails:
- Run
uv run crawl4ai-doctorto diagnose - Ensure playwright browsers are installed:
uv run python -m playwright install chromium - Check the URL is accessible and not blocked by robots.txt
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です