Skill · em Dados, IA e pesquisa
firecrawl-build-scrape
Integrate Firecrawl `/scrape` into product code for single-page extraction. Use when an app already has a URL and needs markdown, HTML, links, screenshots, metadata, or structured page output. Prefer this skill over broader crawl patterns when the feature is page-level.
Procedência
- Origem: firecrawl/skills
- Caminho:
skills/build/firecrawl-build-scrape - Versão fixada:
c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91 - Licença: ISC
- Espelhado em 25/09/2026
- 60,6 mil instalações no skills.sh (lido em 25/09/2026)
Antes de instalar
2 arquivos · 6 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit c469b46) 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-build-scrape/.
d=".claude/skills/firecrawl-build-scrape" u="https://raw.githubusercontent.com/firecrawl/skills/c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91/skills/build/firecrawl-build-scrape" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/freshness-and-liveness.md" "$u/references/freshness-and-liveness.md"
Global: instala em ~/.claude/skills/firecrawl-build-scrape/.
d="$HOME/.claude/skills/firecrawl-build-scrape" u="https://raw.githubusercontent.com/firecrawl/skills/c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91/skills/build/firecrawl-build-scrape" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/freshness-and-liveness.md" "$u/references/freshness-and-liveness.md"
Codex
Neste projeto: instala em .agents/skills/firecrawl-build-scrape/.
d=".agents/skills/firecrawl-build-scrape" u="https://raw.githubusercontent.com/firecrawl/skills/c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91/skills/build/firecrawl-build-scrape" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/freshness-and-liveness.md" "$u/references/freshness-and-liveness.md"
Global: instala em ~/.agents/skills/firecrawl-build-scrape/.
d="$HOME/.agents/skills/firecrawl-build-scrape" u="https://raw.githubusercontent.com/firecrawl/skills/c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91/skills/build/firecrawl-build-scrape" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/freshness-and-liveness.md" "$u/references/freshness-and-liveness.md"
Antigravity
Neste projeto: instala em .agents/skills/firecrawl-build-scrape/.
d=".agents/skills/firecrawl-build-scrape" u="https://raw.githubusercontent.com/firecrawl/skills/c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91/skills/build/firecrawl-build-scrape" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/freshness-and-liveness.md" "$u/references/freshness-and-liveness.md"
Global: instala em ~/.gemini/antigravity-cli/skills/firecrawl-build-scrape/.
d="$HOME/.gemini/antigravity-cli/skills/firecrawl-build-scrape" u="https://raw.githubusercontent.com/firecrawl/skills/c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91/skills/build/firecrawl-build-scrape" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md" \ -o "$d/references/freshness-and-liveness.md" "$u/references/freshness-and-liveness.md"
Peça ao Rook
Já usa o Rook Labs? Cole no chat do Rook: instale a skill https://rooklabs.sh/marketplace/firecrawl.skills.firecrawl-build-scrape
Prévia do SKILL.md
---
name: firecrawl-build-scrape
description: Integrate Firecrawl `/scrape` into product code for single-page extraction. Use when an app already has a URL and needs markdown, HTML, links, screenshots, metadata, or structured page output. Prefer this skill over broader crawl patterns when the feature is page-level.
license: ISC
metadata:
author: firecrawl
version: "0.1.0"
homepage: https://www.firecrawl.dev
source: https://github.com/firecrawl/skills
inputs:
- name: FIRECRAWL_API_KEY
description: Firecrawl API key for hosted Firecrawl requests.
required: true
- name: FIRECRAWL_API_URL
description: Optional base URL for self-hosted Firecrawl deployments.
required: false
references:
- references/freshness-and-liveness.md
---
# Firecrawl Build Scrape
Use this when the application already has the URL and needs content from one page.
## Use This When
- the feature starts from a known URL
- you need page content for retrieval, summarization, enrichment, or monitoring
- you want the default extraction primitive before considering `/interact`
## Default Recommendations
- Return `markdown` unless the feature truly needs another format.
- Use `onlyMainContent` for article-like pages where nav and chrome add noise.
- Add waits or other rendering options only when the page needs them.
## Freshness and Liveness
- Firecrawl reuses recently indexed content, which is what makes repeat reads of the same URL fast. Set `maxAge` (milliseconds) to bound how old a reused copy may be, or `maxAge: 0` to skip index reuse for a freshness-critical read.
- Read `metadata.cacheState` and `metadata.cachedAt` to see what you actually got.
…