firecrawl-download
GitHub将网站或指定部分下载为本地文件,支持Markdown、链接和截图格式。适用于离线文档参考或本地备份,通过CLI自动化执行并保存至.firecrawl目录。
Trigger Scenarios
Install
npx skills add firecrawl/cli --skill firecrawl-download -g -y
SKILL.md
Frontmatter
{
"name": "firecrawl-download",
"description": "Save a site or section as local files (markdown, screenshots). Use for \"download the site\", offline docs, or a local copy for reference.\n",
"allowed-tools": [
"Bash(firecrawl *)",
"Bash(npx firecrawl-cli *)"
]
}
firecrawl download (invoked as firecrawl x download)
Experimental.
downloadis available under thefirecrawl xcommand group.
Prerequisite: download requires authentication (no keyless free tier); without credentials the CLI prompts an interactive login.
Maps the site origin first to discover pages, then scrapes each one into nested directories under .firecrawl/. Use --include-paths to scope a non-root URL to one section. Automated runs always pass -y — without it the command opens an interactive wizard that blocks on a prompt.
Quick start
# With screenshots
firecrawl x download https://docs.example.com --screenshot --limit 20 -y
# Multiple formats (each saved as its own file per page)
firecrawl x 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 x download https://docs.example.com --include-paths "/features,/sdks" -y
# Skip translations
firecrawl x download https://docs.example.com --exclude-paths "/zh,/ja,/fr,/es,/pt-BR" -y
Run firecrawl x download --help for the full option list, including which scrape options download supports.
Done when: the command exits successfully and the expected files exist under .firecrawl/.
See also
- firecrawl-map — just discover URLs without downloading
- firecrawl-scrape — scrape individual pages
- firecrawl-crawl — bulk extract as JSON (not local files)
- firecrawl-build-scrape — building bulk extraction into an app instead of running it here
Version History
-
86aaf06
Current 2026-08-27 16:51
重构技能文档结构,移除冗余的'何时使用'部分,替换 CLI 选项表为帮助指针,重写指令为正向表述,并统一添加完成标准。
-
253abde
2026-08-19 19:06
修正了命令示例(改为firecrawl x download)、补充认证要求说明、修复选项描述错误及交互式提示对Agent的影响。
- 6c50c5d 2026-07-24 11:49


