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

firecrawl-build-scrape

Integrate Firecrawl `/scrape` into product code for single-page extraction. Use when an app already has a URL and needs markdown, HTML, links, screenshots, metadata, or structured page output. Prefer this skill over broader crawl patterns when the feature is page-level.

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

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

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

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

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して firecrawl-build-scrape.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → firecrawl-build-scrape フォルダができる
  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 Scrape

アプリケーションがすでに URL を持っており、1 ページからコンテンツを必要とする場合に使用します。

使用するケース

  • 機能が既知の URL から開始する場合
  • 取得、要約、エンリッチメント、または監視のためにページコンテンツが必要な場合
  • /interact を検討する前に、デフォルトの抽出プリミティブを使用したい場合

デフォルトの推奨事項

  • 機能が本当に別の形式を必要としない限り、markdown を返してください。
  • ナビゲーションやクロームがノイズとなる記事のようなページには、onlyMainContent を使用してください。
  • ページが必要とする場合にのみ、待機やその他のレンダリングオプションを追加してください。

一般的な製品パターン

  • 既知の URL からの知識の取り込み
  • 企業、製品、またはドキュメントページからのエンリッチメント
  • 価格、変更履歴、およびドキュメントの抽出
  • ページレベルの品質チェックまたは監視

エスカレーションルール

  • まだ URL を持っていない場合は、firecrawl-build-search から開始してください。
  • コンテンツがクリック、入力、または複数ステップのナビゲーションを必要とする場合は、firecrawl-build-interact にエスカレートしてください。

実装に関する注意事項

  • 統合を狭く保ってください: 1 つの機能、1 つの URL、1 つの抽出契約。
  • /scrape をダウンストリームの LLM またはインデックス作成パイプラインのデフォルトのプリミティブとして扱ってください。
  • コンシューマーがリンク、スクリーンショット、ブランドデータなどのよりリッチな形式を必要とする場合にのみ、それらを要求してください。

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

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

関連項目

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

Firecrawl Build Scrape

Use this when the application already has the URL and needs content from one page.

Use This When

  • the feature starts from a known URL
  • you need page content for retrieval, summarization, enrichment, or monitoring
  • you want the default extraction primitive before considering /interact

Default Recommendations

  • Return markdown unless the feature truly needs another format.
  • Use onlyMainContent for article-like pages where nav and chrome add noise.
  • Add waits or other rendering options only when the page needs them.

Common Product Patterns

  • knowledge ingestion from known URLs
  • enrichment from a company, product, or docs page
  • pricing, changelog, and documentation extraction
  • page-level quality checks or monitoring

Escalation Rules

Implementation Notes

  • Keep the integration narrow: one feature, one URL, one extraction contract.
  • Treat /scrape as the default primitive for downstream LLM or indexing pipelines.
  • Request richer formats only when the consumer needs them, such as links, screenshots, or branding data.

Docs (Source of Truth)

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

See Also