Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Download an entire website as local markdown, screenshot, or multi-format files by combining Firecrawl's map and scrape commands.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: firecrawl-download3description: |4Download 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.5allowed-tools:6- Bash(firecrawl *)7- Bash(npx firecrawl *)8---910# firecrawl download1112> **Experimental.** Convenience command that combines `map` + `scrape` to save an entire site as local files.1314Maps 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.1516## When to use1718- You want to save an entire site (or section) to local files19- You need offline access to documentation or content20- Bulk content extraction with organized file structure2122## Quick start2324```bash25# Interactive wizard (picks format, screenshots, paths for you)26firecrawl download https://docs.example.com2728# With screenshots29firecrawl download https://docs.example.com --screenshot --limit 20 -y3031# Multiple formats (each saved as its own file per page)32firecrawl download https://docs.example.com --format markdown,links --screenshot --limit 20 -y33# Creates per page: index.md + links.txt + screenshot.png3435# Filter to specific sections36firecrawl download https://docs.example.com --include-paths "/features,/sdks"3738# Skip translations39firecrawl download https://docs.example.com --exclude-paths "/zh,/ja,/fr,/es,/pt-BR"4041# Full combo42firecrawl download https://docs.example.com \43--include-paths "/features,/sdks" \44--exclude-paths "/zh,/ja" \45--only-main-content \46--screenshot \47-y48```4950## Download options5152| Option | Description |53| ------------------------- | -------------------------------------------------------- |54| `--limit <n>` | Max pages to download |55| `--search <query>` | Filter URLs by search query |56| `--include-paths <paths>` | Only download matching paths |57| `--exclude-paths <paths>` | Skip matching paths |58| `--allow-subdomains` | Include subdomain pages |59| `-y` | Skip confirmation prompt (always use in automated flows) |6061## Scrape options (all work with download)6263`-f <formats>`, `-H`, `-S`, `--screenshot`, `--full-page-screenshot`, `--only-main-content`, `--include-tags`, `--exclude-tags`, `--wait-for`, `--max-age`, `--country`, `--languages`6465## See also6667- [firecrawl-map](../firecrawl-map/SKILL.md) — just discover URLs without downloading68- [firecrawl-scrape](../firecrawl-scrape/SKILL.md) — scrape individual pages69- [firecrawl-crawl](../firecrawl-crawl/SKILL.md) — bulk extract as JSON (not local files)70