← Back to list

firecrawl
by vm0-ai
⭐ 4🍴 1📅 Jan 24, 2026
SKILL.md
name: firecrawl description: Scrape and extract content from web pages using Firecrawl API
Firecrawl Skill
This skill uses Firecrawl to scrape web pages and extract their content as clean markdown. It handles JavaScript-rendered pages and provides structured content extraction.
When to Use
Use this skill when:
- You need to extract content from a web page
- You want to read company profiles from Crunchbase, WellFound, LinkedIn
- You need to scrape pricing pages, feature lists, or reviews
- The page requires JavaScript rendering
How to Use
Prerequisites
FIRECRAWL_API_KEYenvironment variable must be set
Basic Usage
scrape.sh "https://example.com/page"
Parameters
| Parameter | Required | Default | Description |
|---|---|---|---|
| url | Yes | - | The URL of the page to scrape |
Examples
# Scrape a Crunchbase profile
scrape.sh "https://www.crunchbase.com/organization/notion"
# Scrape a pricing page
scrape.sh "https://notion.so/pricing"
# Scrape a Trustpilot review page
scrape.sh "https://www.trustpilot.com/review/notion.so"
Output
Results are saved to /tmp/data/scraped_[timestamp].json:
{
"success": true,
"data": {
"markdown": "# Page Title\n\nPage content in markdown format...",
"metadata": {
"title": "Page Title",
"description": "Page description",
"sourceURL": "https://example.com/page"
}
}
}
Guidelines
- Pages with heavy JavaScript may take longer to scrape
- Some pages may require authentication (these will fail)
- The markdown output has images, SVGs, videos removed for cleaner text
- Only main content is extracted (navigation, footers excluded)
Error Handling
- 401 Unauthorized: Check that FIRECRAWL_API_KEY is set correctly
- 403 Forbidden: The page may be blocking scraping
- 500 Error: The page may be temporarily unavailable, retry later
- Timeout: Very large pages may timeout, try a more specific URL
Score
Total Score
50/100
Based on repository quality metrics
✓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
Reviews
💬
Reviews coming soon