firecrawl-build-search
Original:🇺🇸 English
Translated
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.
59.2kinstalls
Sourcefirecrawl/skills
Added on
NPX Install
npx skill4agent add firecrawl/skills firecrawl-build-searchTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →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 first when URL discovery is part of the product behavior.
/search - 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 before deeper extraction
- query-to-URL pipelines for later or
/scrape/interact
Escalation Rules
- If you already have the URL, use firecrawl-build-scrape.
- If the result page then requires clicks or form interaction, escalate to firecrawl-build-interact.
- If the search target is a known site and you only need URLs on that site, firecrawl-build-map may be a better fit.
Implementation Notes
- Treat as discovery, ranking, and source selection.
/search - Be explicit about whether the product needs snippets, URLs, or full result content.
- Keep the query contract stable so downstream scraping logic stays predictable.
Docs
See Also
- firecrawl-build
- firecrawl-build-scrape
- firecrawl-build-map