jpskill.com
✍️ ライティング コミュニティ

firecrawl-download

ウェブサイト全体を、マークダウンやスクリーンショットなど様々な形式でローカルファイルとして保存し、オフラインでの閲覧や参照を可能にするSkill。

📜 元の英語説明(参考)

Download an entire website as local files — markdown, screenshots, or multiple formats per page. Use this skill when the user wants to save a site locally, download documentation for offline use, bulk-save pages as files, or says "download the site", "save as local files", "offline copy", "download all the docs", or "save for reference". Combines site mapping and scraping into organized local directories.

🇯🇵 日本人クリエイター向け解説

一言でいうと

ウェブサイト全体を、マークダウンやスクリーンショットなど様々な形式でローカルファイルとして保存し、オフラインでの閲覧や参照を可能にするSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

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

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

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

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

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

実験的機能です。 mapscrape を組み合わせて、サイト全体をローカルファイルとして保存する便利なコマンドです。

まずサイトをマップしてページを検出し、次に各ページを .firecrawl/ 以下のネストされたディレクトリにスクレイピングします。すべてのスクレイプオプションはダウンロードでも機能します。確認プロンプトをスキップするには、常に -y を渡してください。

使用する場面

  • サイト全体(または一部)をローカルファイルに保存したい場合
  • ドキュメントやコンテンツにオフラインでアクセスする必要がある場合
  • 整理されたファイル構造でコンテンツを一括抽出する場合

クイックスタート

# 対話型ウィザード(フォーマット、スクリーンショット、パスを自動で選択します)
firecrawl download https://docs.example.com

# スクリーンショット付き
firecrawl download https://docs.example.com --screenshot --limit 20 -y

# 複数のフォーマット(各ページごとに独自のファイルとして保存されます)
firecrawl download https://docs.example.com --format markdown,links --screenshot --limit 20 -y
# ページごとに以下を作成します: index.md + links.txt + screenshot.png

# 特定のセクションにフィルターをかける
firecrawl download https://docs.example.com --include-paths "/features,/sdks"

# 翻訳をスキップする
firecrawl download https://docs.example.com --exclude-paths "/zh,/ja,/fr,/es,/pt-BR"

# フルコンボ
firecrawl download https://docs.example.com \
  --include-paths "/features,/sdks" \
  --exclude-paths "/zh,/ja" \
  --only-main-content \
  --screenshot \
  -y

ダウンロードオプション

オプション 説明
--limit <n> ダウンロードする最大ページ数
--search <query> 検索クエリでURLをフィルターする
--include-paths <paths> 一致するパスのみをダウンロードする
--exclude-paths <paths> 一致するパスをスキップする
--allow-subdomains サブドメインのページを含める
-y 確認プロンプトをスキップする(自動化されたフローでは常に使用してください)

スクレイプオプション(すべてダウンロードで機能します)

-f <formats>, -H, -S, --screenshot, --full-page-screenshot, --only-main-content, --include-tags, --exclude-tags, --wait-for, --max-age, --country, --languages

関連項目

  • firecrawl-map — ダウンロードせずにURLを検出するだけです
  • firecrawl-scrape — 個々のページをスクレイピングします
  • firecrawl-crawl — ローカルファイルではなくJSONとして一括抽出します
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

firecrawl download

Experimental. Convenience command that combines map + scrape to save an entire site as local files.

Maps the site first to discover pages, then scrapes each one into nested directories under .firecrawl/. All scrape options work with download. Always pass -y to skip the confirmation prompt.

When to use

  • You want to save an entire site (or section) to local files
  • You need offline access to documentation or content
  • Bulk content extraction with organized file structure

Quick start

# Interactive wizard (picks format, screenshots, paths for you)
firecrawl download https://docs.example.com

# With screenshots
firecrawl download https://docs.example.com --screenshot --limit 20 -y

# Multiple formats (each saved as its own file per page)
firecrawl download https://docs.example.com --format markdown,links --screenshot --limit 20 -y
# Creates per page: index.md + links.txt + screenshot.png

# Filter to specific sections
firecrawl download https://docs.example.com --include-paths "/features,/sdks"

# Skip translations
firecrawl download https://docs.example.com --exclude-paths "/zh,/ja,/fr,/es,/pt-BR"

# Full combo
firecrawl download https://docs.example.com \
  --include-paths "/features,/sdks" \
  --exclude-paths "/zh,/ja" \
  --only-main-content \
  --screenshot \
  -y

Download options

Option Description
--limit <n> Max pages to download
--search <query> Filter URLs by search query
--include-paths <paths> Only download matching paths
--exclude-paths <paths> Skip matching paths
--allow-subdomains Include subdomain pages
-y Skip confirmation prompt (always use in automated flows)

Scrape options (all work with download)

-f <formats>, -H, -S, --screenshot, --full-page-screenshot, --only-main-content, --include-tags, --exclude-tags, --wait-for, --max-age, --country, --languages

See also