firecrawl-agent
複雑なウェブサイトから構造化されたJSON形式でデータを抽出するAIエージェントで、価格情報や製品リスト、ディレクトリなどを指定したスキーマで取得したい場合に、複数ページにわたるデータも効率的に収集するSkill。
📜 元の英語説明(参考)
AI-powered autonomous data extraction that navigates complex sites and returns structured JSON. Use this skill when the user wants structured data from websites, needs to extract pricing tiers, product listings, directory entries, or any data as JSON with a schema. Triggers on "extract structured data", "get all the products", "pull pricing info", "extract as JSON", or when the user provides a JSON schema for website data. More powerful than simple scraping for multi-page structured extraction.
🇯🇵 日本人クリエイター向け解説
複雑なウェブサイトから構造化されたJSON形式でデータを抽出するAIエージェントで、価格情報や製品リスト、ディレクトリなどを指定したスキーマで取得したい場合に、複数ページにわたるデータも効率的に収集するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o firecrawl-agent.zip https://jpskill.com/download/19111.zip && unzip -o firecrawl-agent.zip && rm firecrawl-agent.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/19111.zip -OutFile "$d\firecrawl-agent.zip"; Expand-Archive "$d\firecrawl-agent.zip" -DestinationPath $d -Force; ri "$d\firecrawl-agent.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
firecrawl-agent.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
firecrawl-agentフォルダができる - 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
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
[Skill 名] firecrawl-agent
firecrawl agent
AIを活用した自律的なデータ抽出エージェントです。サイトをナビゲートし、構造化データを抽出します(2~5分かかります)。
使用する場面
- 複雑な複数ページサイトから構造化データが必要な場合
- 手動でのスクレイピングでは多くのページをナビゲートする必要がある場合
- AIにデータの場所を特定させたい場合
クイックスタート
# 構造化データを抽出する
firecrawl agent "extract all pricing tiers" --wait -o .firecrawl/pricing.json
# 構造化出力のためのJSONスキーマを使用する
firecrawl agent "extract products" --schema '{"type":"object","properties":{"name":{"type":"string"},"price":{"type":"number"}}}' --wait -o .firecrawl/products.json
# 特定のページに焦点を当てる
firecrawl agent "get feature list" --urls "<url>" --wait -o .firecrawl/features.json
オプション
| オプション | 説明 |
|---|---|
--urls <urls> |
エージェントの開始URL |
--model <model> |
使用するモデル: spark-1-mini または spark-1-pro |
--schema <json> |
構造化出力のためのJSONスキーマ |
--schema-file <path> |
JSONスキーマファイルへのパス |
--max-credits <n> |
このエージェント実行のクレジット上限 |
--wait |
エージェントの完了を待機する |
--pretty |
JSON出力を整形して表示する |
-o, --output <path> |
出力ファイルのパス |
ヒント
- 結果をインラインで取得するには、常に
--waitを使用してください。これがない場合、ジョブIDが返されます。 - 予測可能で構造化された出力を得るには
--schemaを使用してください。そうしないと、エージェントは自由形式のデータを返します。 - エージェントの実行は、単純なスクレイピングよりも多くのクレジットを消費します。
--max-creditsを使用して支出を制限してください。 - 単純な単一ページ抽出には、
scrapeを推奨します。より高速で安価です。
関連項目
- firecrawl-scrape — よりシンプルな単一ページ抽出
- firecrawl-interact — 手動ページ操作のためのスクレイピング + インタラクション(より詳細な制御)
- firecrawl-crawl — AIなしでの一括抽出
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
firecrawl agent
AI-powered autonomous extraction. The agent navigates sites and extracts structured data (takes 2-5 minutes).
When to use
- You need structured data from complex multi-page sites
- Manual scraping would require navigating many pages
- You want the AI to figure out where the data lives
Quick start
# Extract structured data
firecrawl agent "extract all pricing tiers" --wait -o .firecrawl/pricing.json
# With a JSON schema for structured output
firecrawl agent "extract products" --schema '{"type":"object","properties":{"name":{"type":"string"},"price":{"type":"number"}}}' --wait -o .firecrawl/products.json
# Focus on specific pages
firecrawl agent "get feature list" --urls "<url>" --wait -o .firecrawl/features.json
Options
| Option | Description |
|---|---|
--urls <urls> |
Starting URLs for the agent |
--model <model> |
Model to use: spark-1-mini or spark-1-pro |
--schema <json> |
JSON schema for structured output |
--schema-file <path> |
Path to JSON schema file |
--max-credits <n> |
Credit limit for this agent run |
--wait |
Wait for agent to complete |
--pretty |
Pretty print JSON output |
-o, --output <path> |
Output file path |
Tips
- Always use
--waitto get results inline. Without it, returns a job ID. - Use
--schemafor predictable, structured output — otherwise the agent returns freeform data. - Agent runs consume more credits than simple scrapes. Use
--max-creditsto cap spending. - For simple single-page extraction, prefer
scrape— it's faster and cheaper.
See also
- firecrawl-scrape — simpler single-page extraction
- firecrawl-interact — scrape + interact for manual page interaction (more control)
- firecrawl-crawl — bulk extraction without AI