firecrawl-web
最新のウェブ情報取得、URLスクレイピング、スクリーンショット作成、ページからのデータ抽出、ドキュメントサイトのクロールなど、ウェブに関する様々なニーズに対応できる汎用性の高い調査・分析を支援するSkill。
📜 元の英語説明(参考)
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.
🇯🇵 日本人クリエイター向け解説
最新のウェブ情報取得、URLスクレイピング、スクリーンショット作成、ページからのデータ抽出、ドキュメントサイトのクロールなど、ウェブに関する様々なニーズに対応できる汎用性の高い調査・分析を支援するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o firecrawl-web.zip https://jpskill.com/download/17518.zip && unzip -o firecrawl-web.zip && rm firecrawl-web.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17518.zip -OutFile "$d\firecrawl-web.zip"; Expand-Archive "$d\firecrawl-web.zip" -DestinationPath $d -Force; ri "$d\firecrawl-web.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
firecrawl-web.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
firecrawl-webフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 2
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Firecrawl Web Skill
このスキルは、Firecrawl の API を通じて Web アクセスを提供します。
スクリプトの場所
すべてのコマンドは、バンドルされているスクリプトを使用します。 ~/.claude/skills/firecrawl-web/fc.py
ページコンテンツの取得
任意の Web ページをクリーンな Markdown として取得します。
python3 ~/.claude/skills/firecrawl-web/fc.py markdown "https://example.com"
ナビゲーションやフッターなしで、よりクリーンな出力を得るには:
python3 ~/.claude/skills/firecrawl-web/fc.py markdown "https://example.com" --main-only
スクリーンショットの撮影
フルページのスクリーンショットをキャプチャします。
python3 ~/.claude/skills/firecrawl-web/fc.py screenshot "https://example.com" -o page.png
構造化データの抽出
JSON スキーマを使用して特定のデータを抽出します。まず、スキーマファイルを作成します。
{
"type": "object",
"properties": {
"title": {"type": "string"},
"price": {"type": "number"},
"features": {"type": "array", "items": {"type": "string"}}
}
}
次に抽出します。
python3 ~/.claude/skills/firecrawl-web/fc.py extract "https://example.com/product" --schema schema.json
精度を高めるためにプロンプトを追加します。
python3 ~/.claude/skills/firecrawl-web/fc.py extract "https://example.com/product" --schema schema.json --prompt "Extract the main product details"
Web の検索
最新の情報を検索します。
python3 ~/.claude/skills/firecrawl-web/fc.py search "Python 3.13 new features"
結果を制限します。
python3 ~/.claude/skills/firecrawl-web/fc.py search "latest React documentation" --limit 3
ドキュメントのクロール
ドキュメントサイトをクロールして、新しいフレームワークについて学習します。
python3 ~/.claude/skills/firecrawl-web/fc.py crawl "https://docs.newframework.dev" --limit 30
ページをディレクトリに保存します。
python3 ~/.claude/skills/firecrawl-web/fc.py crawl "https://docs.example.com" --limit 50 --output ./docs
各ページは 1 クレジットを消費します。クォータを使い果たさないように、適切な制限を設定してください。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
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.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (2,330 bytes)
- 📎 README.md (2,247 bytes)