Skill · em Dados, IA e pesquisa
firecrawl-scrape
Read a known webpage or execute a discovered workflow or data-provider capability. Use for page content or structured results once the URL or tool is selected.
Procedência
- Origem: firecrawl/cli
- Caminho:
skills/firecrawl-scrape - Versão fixada:
8f954f6e9f12721bc29135b115dd9bc085d29d2d - Licença: ISC
- Espelhado em 25/09/2026
- 82,3 mil instalações no skills.sh (lido em 25/09/2026)
Antes de instalar
2 arquivos · 10,6 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 8f954f6) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/skills/firecrawl-scrape/.
d=".claude/skills/firecrawl-scrape" u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-scrape" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/large-results.md" "$u/references/large-results.md"
Global: instala em ~/.claude/skills/firecrawl-scrape/.
d="$HOME/.claude/skills/firecrawl-scrape" u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-scrape" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/large-results.md" "$u/references/large-results.md"
Codex
Neste projeto: instala em .agents/skills/firecrawl-scrape/.
d=".agents/skills/firecrawl-scrape" u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-scrape" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/large-results.md" "$u/references/large-results.md"
Global: instala em ~/.agents/skills/firecrawl-scrape/.
d="$HOME/.agents/skills/firecrawl-scrape" u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-scrape" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/large-results.md" "$u/references/large-results.md"
Antigravity
Neste projeto: instala em .agents/skills/firecrawl-scrape/.
d=".agents/skills/firecrawl-scrape" u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-scrape" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/large-results.md" "$u/references/large-results.md"
Global: instala em ~/.gemini/antigravity-cli/skills/firecrawl-scrape/.
d="$HOME/.gemini/antigravity-cli/skills/firecrawl-scrape" u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-scrape" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/large-results.md" "$u/references/large-results.md"
Peça ao Rook
Já usa o Rook Labs? Cole no chat do Rook: instale a skill https://rooklabs.sh/marketplace/firecrawl.cli.firecrawl-scrape
Prévia do SKILL.md
---
name: firecrawl-scrape
description: Read a known webpage or execute a discovered workflow or data-provider capability. Use for page content or structured results once the URL or tool is selected.
allowed-tools:
- Bash(firecrawl *)
- Bash(npx firecrawl-cli *)
---
# firecrawl scrape
Read a URL for page content, or execute a selected provider tool for structured data. Discover tools with `search` and inspect their inputs with `list` before execution. Multiple URLs can be scraped concurrently.
For structured datasets, first check for a suitable workflow or data provider using the [search skill](../firecrawl-search/SKILL.md). Read a known page directly; reuse a selected contract instead of repeating discovery.
## Quick start
```bash
# Basic markdown extraction
firecrawl scrape "<url>" -o .firecrawl/page.md
# Main content only, no nav/footer
firecrawl scrape "<url>" --only-main-content -o .firecrawl/page.md
# Wait for JS to render, then scrape
firecrawl scrape "<url>" --wait-for 3000 -o .firecrawl/page.md
# Multiple URLs (markdown only; each saved to .firecrawl/; -o is ignored)
firecrawl scrape https://example.com https://example.com/blog https://example.com/docs
# Get markdown and links together
firecrawl scrape "<url>" --format markdown,links -o .firecrawl/page.json
# Ask a question about the page
firecrawl scrape "https://example.com/pricing" --query "What is the enterprise plan price?"
```
Run `firecrawl scrape --help` for the full option list.
**Done when:** the page content or provider result has been checked for errors and inspected in bounded sections to answer the request. Preserve source links and disclose partial results.
…