
firecrawl-web
by aiskillstore
firecrawl-webは、other分野における実用的なスキルです。複雑な課題への対応力を強化し、業務効率と成果の質を改善します。
SKILL.md
name: firecrawl-web description: "Fetch web content, take screenshots, extract structured data, search the web, and crawl documentation sites. Use when the user needs current web information, asks to scrape a URL, wants a screenshot, needs to extract specific data from a page, or wants to learn about a framework or library." allowed-tools: ["Bash", "Read", "Write"]
Firecrawl Web Skill
This skill provides web access through Firecrawl's API.
Script Location
All commands use the bundled script: ~/.claude/skills/firecrawl-web/fc.py
Getting Page Content
Fetch any webpage as clean markdown:
python3 ~/.claude/skills/firecrawl-web/fc.py markdown "https://example.com"
For cleaner output without navigation and footers:
python3 ~/.claude/skills/firecrawl-web/fc.py markdown "https://example.com" --main-only
Taking Screenshots
Capture a full-page screenshot:
python3 ~/.claude/skills/firecrawl-web/fc.py screenshot "https://example.com" -o page.png
Extracting Structured Data
Extract specific data using a JSON schema. Create a schema file first:
{
"type": "object",
"properties": {
"title": {"type": "string"},
"price": {"type": "number"},
"features": {"type": "array", "items": {"type": "string"}}
}
}
Then extract:
python3 ~/.claude/skills/firecrawl-web/fc.py extract "https://example.com/product" --schema schema.json
Add a prompt for better accuracy:
python3 ~/.claude/skills/firecrawl-web/fc.py extract "https://example.com/product" --schema schema.json --prompt "Extract the main product details"
Searching the Web
Search for current information:
python3 ~/.claude/skills/firecrawl-web/fc.py search "Python 3.13 new features"
Limit results:
python3 ~/.claude/skills/firecrawl-web/fc.py search "latest React documentation" --limit 3
Crawling Documentation
Crawl a documentation site to learn about a new framework:
python3 ~/.claude/skills/firecrawl-web/fc.py crawl "https://docs.newframework.dev" --limit 30
Save pages to a directory:
python3 ~/.claude/skills/firecrawl-web/fc.py crawl "https://docs.example.com" --limit 50 --output ./docs
Each page costs one credit. Set a reasonable limit to avoid burning through your quota.
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です
