jpskill.com
🛠️ 開発・MCP コミュニティ

firecrawl-build-search

Integrate Firecrawl `/search` into product code and agent workflows. Use when an app needs discovery before extraction, when the feature starts with a query instead of a URL, or when the system should search the web and optionally hydrate result content.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o firecrawl-build-search.zip https://jpskill.com/download/19115.zip && unzip -o firecrawl-build-search.zip && rm firecrawl-build-search.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/19115.zip -OutFile "$d\firecrawl-build-search.zip"; Expand-Archive "$d\firecrawl-build-search.zip" -DestinationPath $d -Force; ri "$d\firecrawl-build-search.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して firecrawl-build-search.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → firecrawl-build-search フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Firecrawl Build Search

このスキルは、アプリケーションがURLではなくクエリから開始する場合に使用します。

使用するケース

  • ユーザーが質問し、製品が最初に情報源を発見する必要がある場合
  • 機能が最新のウェブ検索結果を必要とする場合
  • 検索クエリを、後でスクレイピングするためのページのショートリストに変換したい場合

デフォルトの推奨事項

  • URLの発見が製品の動作の一部である場合は、まず /search を使用してください。
  • 検索結果のスクレイピングが明確に必要でない限り、検索と抽出は概念的に分離してください。
  • コストやレイテンシーが重要な場合は、広範な hydration よりも選択的なフォローアップ抽出を優先してください。

一般的な製品パターン

  • 引用元付きの回答生成
  • 企業、競合他社、またはトピックの発見
  • より深い抽出の前にショートリストを作成する調査ワークフロー
  • 後で /scrape または /interact するためのクエリからURLへのパイプライン

エスカレーションルール

  • すでにURLを持っている場合は、firecrawl-build-scrape を使用してください。
  • 結果ページでクリックやフォーム操作が必要な場合は、firecrawl-build-interact にエスカレートしてください。

実装に関する注意点

  • /search を発見、ランキング、および情報源の選択として扱ってください。
  • 製品がスニペット、URL、または完全な結果コンテンツを必要とするかどうかを明示してください。
  • ダウンストリームのスクレイピングロジックが予測可能であるように、クエリ契約を安定させてください。

ドキュメント (信頼できる情報源)

統合コードを記述する前に、プロジェクト言語の信頼できる情報源ページを読んでください。

関連項目

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Firecrawl Build Search

Use this when the application starts with a query, not a URL.

Use This When

  • the user asks a question and the product must discover sources first
  • the feature needs current web results
  • you want to turn a search query into a shortlist of pages for later scraping

Default Recommendations

  • Use /search first when URL discovery is part of the product behavior.
  • Keep search and extraction conceptually separate unless scraping search results is clearly required.
  • Prefer selective follow-up extraction over broad hydration when cost or latency matters.

Common Product Patterns

  • answer generation with cited sources
  • company, competitor, or topic discovery
  • research workflows that produce a shortlist before deeper extraction
  • query-to-URL pipelines for later /scrape or /interact

Escalation Rules

Implementation Notes

  • Treat /search as discovery, ranking, and source selection.
  • Be explicit about whether the product needs snippets, URLs, or full result content.
  • Keep the query contract stable so downstream scraping logic stays predictable.

Docs (Source of Truth)

Read the source-of-truth page for your project language before writing integration code:

See Also