firecrawl-map
ウェブサイト全体のURLを検索し、特定のページを見つけたり、サイト構造を把握したりする際に役立ち、サイト内のどこに何があるかを知りたい場合に、目的のページを効率的に探し出すことを支援するSkill。
📜 元の英語説明(参考)
Discover and list all URLs on a website, with optional search filtering. Use this skill when the user wants to find a specific page on a large site, list all URLs, see the site structure, find where something is on a domain, or says "map the site", "find the URL for", "what pages are on", or "list all pages". Essential when the user knows which site but not which exact page.
🇯🇵 日本人クリエイター向け解説
ウェブサイト全体のURLを検索し、特定のページを見つけたり、サイト構造を把握したりする際に役立ち、サイト内のどこに何があるかを知りたい場合に、目的のページを効率的に探し出すことを支援するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o firecrawl-map.zip https://jpskill.com/download/19119.zip && unzip -o firecrawl-map.zip && rm firecrawl-map.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/19119.zip -OutFile "$d\firecrawl-map.zip"; Expand-Archive "$d\firecrawl-map.zip" -DestinationPath $d -Force; ri "$d\firecrawl-map.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
firecrawl-map.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
firecrawl-mapフォルダができる - 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-map
firecrawl map
サイト上の URL を発見します。大規模なサイト内で特定のページを見つけるには、--search を使用してください。
使用する場面
- 大規模なサイトで特定のサブページを見つける必要がある場合
- スクレイピングやクローリングの前に、サイト上のすべての URL のリストが必要な場合
- ワークフローエスカレーションパターンのステップ 3: 検索 → スクレイピング → マップ → クロール → インタラクト
クイックスタート
# 大規模なサイトで特定のページを見つける
firecrawl map "<url>" --search "authentication" -o .firecrawl/filtered.txt
# すべての URL を取得する
firecrawl map "<url>" --limit 500 --json -o .firecrawl/urls.json
オプション
| オプション | 説明 |
|---|---|
--limit <n> |
返す URL の最大数 |
--search <query> |
検索クエリで URL をフィルタリング |
--sitemap <include\|skip\|only> |
サイトマップ処理戦略 |
--include-subdomains |
サブドメインの URL を含める |
--json |
JSON 形式で出力 |
-o, --output <path> |
出力ファイルのパス |
ヒント
- マップ + スクレイピングは一般的なパターンです:
map --searchを使用して適切な URL を見つけ、それをscrapeします。 - 例:
map https://docs.example.com --search "auth"→/docs/api/authenticationを発見 → その URL をscrapeします。
関連項目
- firecrawl-scrape — 発見した URL をスクレイピングします
- firecrawl-crawl — マップ + スクレイピングの代わりに一括抽出します
- firecrawl-download — サイト全体をダウンロードします (内部でマップを使用します)
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
firecrawl map
Discover URLs on a site. Use --search to find a specific page within a large site.
When to use
- You need to find a specific subpage on a large site
- You want a list of all URLs on a site before scraping or crawling
- Step 3 in the workflow escalation pattern: search → scrape → map → crawl → interact
Quick start
# Find a specific page on a large site
firecrawl map "<url>" --search "authentication" -o .firecrawl/filtered.txt
# Get all URLs
firecrawl map "<url>" --limit 500 --json -o .firecrawl/urls.json
Options
| Option | Description |
|---|---|
--limit <n> |
Max number of URLs to return |
--search <query> |
Filter URLs by search query |
--sitemap <include\|skip\|only> |
Sitemap handling strategy |
--include-subdomains |
Include subdomain URLs |
--json |
Output as JSON |
-o, --output <path> |
Output file path |
Tips
- Map + scrape is a common pattern: use
map --searchto find the right URL, thenscrapeit. - Example:
map https://docs.example.com --search "auth"→ found/docs/api/authentication→scrapethat URL.
See also
- firecrawl-scrape — scrape the URLs you discover
- firecrawl-crawl — bulk extract instead of map + scrape
- firecrawl-download — download entire site (uses map internally)