Web scraping and crawling with Firecrawl API. Fetch webpage content as markdown, take screenshots, extract structured data, search the web, and crawl documentation sites. Use when the user needs to scrape a URL, get current web info, capture a screenshot, extract specific data from pages, or crawl docs for a framework/library.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install firecrawler或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install firecrawler⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/firecrawler/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: firecrawl description: Web scraping and crawling with Firecrawl API. Fetch webpage content as markdown, take screenshots, extract structured data, search the web, and crawl documentation sites. Use when the user needs to scrape a URL, get current web info, capture a screenshot, extract specific data from pages, or crawl docs for a framework/library. version: 1.0.0 author: captmarbles ---
Scrape, search, and crawl the web using Firecrawl.
```bash export FIRECRAWL_API_KEY=fc-your-key-here ```
```bash pip3 install firecrawl ```
All commands use the bundled fc.py script in this skill's directory.
Fetch any URL and convert to clean markdown. Handles JavaScript-rendered content.
python3 fc.py markdown "https://example.com"
python3 fc.py markdown "https://example.com" --main-only # skip nav/footer
Capture a full-page screenshot of any URL.
python3 fc.py screenshot "https://example.com" -o screenshot.png
Pull specific fields from a page using a JSON schema.
Schema example (schema.json):
{
"type": "object",
"properties": {
"title": { "type": "string" },
"price": { "type": "number" },
"features": { "type": "array", "items": { "type": "string" } }
}
}
python3 fc.py extract "https://example.com/product" --schema schema.json
python3 fc.py extract "https://example.com/product" --schema schema.json --prompt "Extract the main product details"
Search the web and get content from results (may require paid tier).
python3 fc.py search "Python 3.13 new features" --limit 5
Crawl an entire documentation site. Great for learning new frameworks.
python3 fc.py crawl "https://docs.example.com" --limit 30
python3 fc.py crawl "https://docs.example.com" --limit 50 --output ./docs
Note: Each page costs 1 credit. Set reasonable limits.
Discover all URLs on a website before deciding what to scrape.
python3 fc.py map "https://example.com" --limit 100
python3 fc.py map "https://example.com" --search "api"
Free tier includes 500 credits. 1 credit = 1 page/screenshot/search query.
安装 Firecrawler 后,可以对 AI 说这些话来触发它
Help me get started with Firecrawler
Explains what Firecrawler does, walks through the setup, and runs a quick demo based on your current project
Use Firecrawler to web scraping and crawling with Firecrawl API
Invokes Firecrawler with the right parameters and returns the result directly in the conversation
What can I do with Firecrawler in my data & analytics workflow?
Lists the top use cases for Firecrawler, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/firecrawler/ 目录(个人级,所有项目可用),或 .claude/skills/firecrawler/(项目级)。重启 AI 客户端后,用 /firecrawler 主动调用,或让 AI 根据上下文自动发现并使用。
Firecrawler 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Firecrawler 可免费安装使用。请查阅仓库了解许可证信息。
Web scraping and crawling with Firecrawl API. Fetch webpage content as markdown, take screenshots, extract structured data, search the web, and crawl documentation sites. Use when the user needs to scrape a URL, get current web info, capture a screenshot, extract specific data from pages, or crawl docs for a framework/library.
Firecrawler 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using Firecrawler
Identifies repetitive steps in your workflow and sets up Firecrawler to handle them automatically