firecrawl-search
ユーザーがウェブ検索、記事検索、調査、ニュース検索などを求めた際に、検索結果だけでなくページ全体の情報を抽出して提供し、Claudeの標準的なウェブ検索機能を超える情報収集を支援するSkill。
📜 元の英語説明(参考)
Web search with full page content extraction. Use this skill whenever the user asks to search the web, find articles, research a topic, look something up, find recent news, discover sources, or says "search for", "find me", "look up", "what are people saying about", or "find articles about". Returns real search results with optional full-page markdown — not just snippets. Provides capabilities beyond Claude's built-in WebSearch.
🇯🇵 日本人クリエイター向け解説
ユーザーがウェブ検索、記事検索、調査、ニュース検索などを求めた際に、検索結果だけでなくページ全体の情報を抽出して提供し、Claudeの標準的なウェブ検索機能を超える情報収集を支援するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o firecrawl-search.zip https://jpskill.com/download/19121.zip && unzip -o firecrawl-search.zip && rm firecrawl-search.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/19121.zip -OutFile "$d\firecrawl-search.zip"; Expand-Archive "$d\firecrawl-search.zip" -DestinationPath $d -Force; ri "$d\firecrawl-search.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
firecrawl-search.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
firecrawl-searchフォルダができる - 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-search
firecrawl search
オプションでコンテンツスクレイピングを伴うウェブ検索です。検索結果をJSON形式で返します。オプションでページ全体のコンテンツも返します。
使用する場面
- まだ特定のURLを持っていない場合
- ページを見つけたり、質問に答えたり、情報源を発見したりする必要がある場合
- ワークフローエスカレーションパターンの最初のステップとして:検索 → スクレイピング → マッピング → クロール → インタラクト
クイックスタート
# 基本的な検索
firecrawl search "あなたのクエリ" -o .firecrawl/result.json --json
# 検索し、結果からページ全体のコンテンツをスクレイピング
firecrawl search "あなたのクエリ" --scrape -o .firecrawl/scraped.json --json
# 過去1日間のニュース
firecrawl search "あなたのクエリ" --sources news --tbs qdr:d -o .firecrawl/news.json --json
オプション
| オプション | 説明 |
|---|---|
--limit <n> |
結果の最大数 |
--sources <web,images,news> |
検索するソースの種類 |
--categories <github,research,pdf> |
カテゴリでフィルタリング |
--tbs <qdr:h\|d\|w\|m\|y> |
時間ベースの検索フィルター |
--location |
検索結果の場所 |
--country <code> |
検索の国コード |
--scrape |
各結果のページ全体のコンテンツもスクレイピングする |
--scrape-formats |
スクレイピング時のフォーマット (デフォルト: markdown) |
-o, --output <path> |
出力ファイルのパス |
--json |
JSON形式で出力 |
ヒント
--scrapeはコンテンツ全体を取得します — 検索結果からURLを再スクレイピングしないでください。これにより、クレジットを節約し、冗長なフェッチを回避できます。- コンテキストウィンドウの肥大化を避けるため、常に
-oを使用して結果を.firecrawl/に書き込んでください。 jqを使用してURLやタイトルを抽出します:jq -r '.data.web[].url' .firecrawl/search.json- 命名規則:
.firecrawl/search-{query}.jsonまたは.firecrawl/search-{query}-scraped.json
関連項目
- firecrawl-scrape — 特定のURLをスクレイピングします
- firecrawl-map — サイト内のURLを発見します
- firecrawl-crawl — サイトから一括で情報を抽出します
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
firecrawl search
Web search with optional content scraping. Returns search results as JSON, optionally with full page content.
When to use
- You don't have a specific URL yet
- You need to find pages, answer questions, or discover sources
- First step in the workflow escalation pattern: search → scrape → map → crawl → interact
Quick start
# Basic search
firecrawl search "your query" -o .firecrawl/result.json --json
# Search and scrape full page content from results
firecrawl search "your query" --scrape -o .firecrawl/scraped.json --json
# News from the past day
firecrawl search "your query" --sources news --tbs qdr:d -o .firecrawl/news.json --json
Options
| Option | Description |
|---|---|
--limit <n> |
Max number of results |
--sources <web,images,news> |
Source types to search |
--categories <github,research,pdf> |
Filter by category |
--tbs <qdr:h\|d\|w\|m\|y> |
Time-based search filter |
--location |
Location for search results |
--country <code> |
Country code for search |
--scrape |
Also scrape full page content for each result |
--scrape-formats |
Formats when scraping (default: markdown) |
-o, --output <path> |
Output file path |
--json |
Output as JSON |
Tips
--scrapefetches full content — don't re-scrape URLs from search results. This saves credits and avoids redundant fetches.- Always write results to
.firecrawl/with-oto avoid context window bloat. - Use
jqto extract URLs or titles:jq -r '.data.web[].url' .firecrawl/search.json - Naming convention:
.firecrawl/search-{query}.jsonor.firecrawl/search-{query}-scraped.json
See also
- firecrawl-scrape — scrape a specific URL
- firecrawl-map — discover URLs within a site
- firecrawl-crawl — bulk extract from a site