Skill · em Dados, IA e pesquisa
firecrawl-build-search
Integrate Firecrawl `/search` into product code and agent workflows. Use when an app needs discovery before extraction, when the feature starts with a query instead of a URL, or when the system should search the web and optionally hydrate result content.
Procedência
- Origem: firecrawl/skills
- Caminho:
skills/build/firecrawl-build-search - 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
1 arquivo · 4,2 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-search/.
d=".claude/skills/firecrawl-build-search" u="https://raw.githubusercontent.com/firecrawl/skills/c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91/skills/build/firecrawl-build-search" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Global: instala em ~/.claude/skills/firecrawl-build-search/.
d="$HOME/.claude/skills/firecrawl-build-search" u="https://raw.githubusercontent.com/firecrawl/skills/c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91/skills/build/firecrawl-build-search" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Codex
Neste projeto: instala em .agents/skills/firecrawl-build-search/.
d=".agents/skills/firecrawl-build-search" u="https://raw.githubusercontent.com/firecrawl/skills/c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91/skills/build/firecrawl-build-search" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Global: instala em ~/.agents/skills/firecrawl-build-search/.
d="$HOME/.agents/skills/firecrawl-build-search" u="https://raw.githubusercontent.com/firecrawl/skills/c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91/skills/build/firecrawl-build-search" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Antigravity
Neste projeto: instala em .agents/skills/firecrawl-build-search/.
d=".agents/skills/firecrawl-build-search" u="https://raw.githubusercontent.com/firecrawl/skills/c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91/skills/build/firecrawl-build-search" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Global: instala em ~/.gemini/antigravity-cli/skills/firecrawl-build-search/.
d="$HOME/.gemini/antigravity-cli/skills/firecrawl-build-search" u="https://raw.githubusercontent.com/firecrawl/skills/c469b462a22f6a2ea25ce4dca77ce4c4dc8c5d91/skills/build/firecrawl-build-search" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.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-search
Prévia do SKILL.md
---
name: firecrawl-build-search
description: Integrate Firecrawl `/search` into product code and agent workflows. Use when an app needs discovery before extraction, when the feature starts with a query instead of a URL, or when the system should search the web and optionally hydrate result content.
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
---
# Firecrawl Build Search
Use this when the application starts with a query, not a URL.
## Use This When
- the user asks a question and the product must discover sources first
- the feature needs current web results
- you want to turn a search query into a shortlist of pages for later scraping
## Default Recommendations
- Use `/search` first when URL discovery is part of the product behavior.
- Keep search and extraction conceptually separate unless scraping search results is clearly required.
- Prefer selective follow-up extraction over broad hydration when cost or latency matters.
## Common Product Patterns
- answer generation with cited sources
- company, competitor, or topic discovery
- research workflows that produce a shortlist of **web pages** before deeper extraction
- query-to-URL pipelines for later `/scrape` or `/interact`
…