firecrawl/firecrawl-codex-plugin · Archived

firecrawl-search

Web search with full page content extraction. Use this skill whenever the user asks to search the web, find articles, research a topic, look something up, find recent news, discover sources, or says "search for", "find me", "look up", "what are people saying about", or "find articles about". Returns real search results with optional full-page markdown — not just snippets. Provides capabilities beyond default agent web search tools.

First seen Jun 29, 2026

Installation

$ npx skills add firecrawl/firecrawl-codex-plugin --skill firecrawl-search

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from firecrawl/firecrawl-codex-plugin.

npx skills add firecrawl/firecrawl-codex-plugin

Browse all from firecrawl/firecrawl-codex-plugin

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 21
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,943 B
  • docs SUMMARY.md 461 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 22 installs

SKILL.md

firecrawl search

Web search with optional content scraping. Returns search results as JSON, optionally with full page content.

When to use

  • You don't have a specific URL yet
  • You need to find pages, answer questions, or discover sources
  • First step in the [workflow escalation pattern](../firecrawl-cli/SKILL.md): search → scrape → map → crawl → interact

Quick start

# Basic search
firecrawl search "your query" -o .firecrawl/result.json --json

# Search and scrape full page content from results
firecrawl search "your query" --scrape -o .firecrawl/scraped.json --json

# News from the past day
firecrawl search "your query" --sources news --tbs qdr:d -o .firecrawl/news.json --json

Options

Option Description
--limit <n> Max number of results
--sources <web,images,news> Source types to search
--categories <github,research,pdf> Filter by category
`--tbs <qdr:h\ d\ w\ m\ y>` Time-based search filter
--location Location for search results
--country <code> Country code for search
--scrape Also scrape full page content for each result
--scrape-formats Formats when scraping (default: markdown)
-o, --output <path> Output file path
--json Output as JSON

Tips

  • --scrape fetches full content — don't re-scrape URLs from search results. This saves credits and avoids redundant fetches.
  • Always write results to .firecrawl/ with -o to avoid context window bloat.
  • Use jq to extract URLs or titles: jq -r '.data.web[].url' .firecrawl/search.json
  • Naming convention: .firecrawl/search-{query}.json or .firecrawl/search-{query}-scraped.json

See also

  • [firecrawl-scrape](../firecrawl-scrape/SKILL.md) — scrape a specific URL
  • [firecrawl-map](../firecrawl-map/SKILL.md) — discover URLs within a site
  • [firecrawl-crawl](../firecrawl-crawl/SKILL.md) — bulk extract from a site