askill
firecrawl

firecrawlSafety 85Repository

Web scraping, content extraction, and autonomous research agent for deep web investigation.

0 stars
1.2k downloads
Updated 2/5/2026

Package Files

Loading files...
SKILL.md

Firecrawl (Web Scraping & Research)

Use Firecrawl to extract content from websites, perform web searches, and conduct autonomous deep research.

Tools

ToolPurpose
firecrawl_scrapeExtract content from a single URL
firecrawl_crawlCrawl multiple pages from a domain
firecrawl_mapDiscover all URLs on a website
firecrawl_searchSearch the web and extract results
firecrawl_agentAutonomous research agent - finds data anywhere on the web

Firecrawl Agent (Deep Research)

The firecrawl_agent tool is an autonomous research agent that searches, navigates, and gathers data from anywhere on the web. No URLs required - just describe what you need.

When to Use Agent vs Other Tools

ScenarioToolWhy
Know the exact URLscrapeFaster, cheaper
Need to explore a sitemap + scrapeControlled discovery
Simple web searchsearchQuick results
Don't know where data isagentAutonomous navigation
Competitive analysisagentMulti-site research
Complex research questionsagentFinds hard-to-reach data

Basic Usage

firecrawl_agent({
  prompt: "Find the founders of Firecrawl and their backgrounds"
})

Structured Output with Schema

For structured data, provide a JSON schema:

firecrawl_agent({
  prompt: "Compare how Stripe, Auth0, and Clerk handle refresh token rotation",
  schema: {
    "type": "object",
    "properties": {
      "providers": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "name": { "type": "string" },
            "approach": { "type": "string" },
            "token_lifetime": { "type": "string" },
            "rotation_strategy": { "type": "string" }
          },
          "required": ["name", "approach"]
        }
      }
    }
  }
})

With Optional URLs (Focus the Agent)

When you have starting points but need deeper investigation:

firecrawl_agent({
  urls: ["https://docs.stripe.com/api", "https://auth0.com/docs"],
  prompt: "Compare the webhook retry strategies and timeout configurations"
})

Research Patterns

Competitive Analysis

firecrawl_agent({
  prompt: "How do major auth providers (Auth0, Clerk, Supabase Auth) implement multi-tenant authentication? Focus on tenant isolation and session management.",
  schema: {
    "type": "object",
    "properties": {
      "providers": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "name": { "type": "string" },
            "tenant_isolation": { "type": "string" },
            "session_management": { "type": "string" },
            "tradeoffs": { "type": "string" }
          }
        }
      }
    }
  }
})

Implementation Research

firecrawl_agent({
  prompt: "Find production examples of Effect-TS being used with Drizzle ORM. Include code patterns and gotchas.",
  schema: {
    "type": "object",
    "properties": {
      "examples": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "source": { "type": "string" },
            "pattern": { "type": "string" },
            "code_snippet": { "type": "string" },
            "notes": { "type": "string" }
          }
        }
      }
    }
  }
})

Best Practices Discovery

firecrawl_agent({
  prompt: "What are industry best practices for WebSocket reconnection strategies? Include timeout values and backoff algorithms used by Pusher, Ably, and Socket.io."
})

Cost Management

Agent pricing is dynamic based on complexity. Control costs with:

  • Specific prompts - More specific = fewer credits
  • Schemas - Structured output reduces processing
  • Focus with URLs - Optional URLs narrow the search scope

Single Page Scraping

firecrawl_scrape({
  url: "https://docs.example.com/api/auth",
  formats: ["markdown"]
})

Returns clean markdown content from the page.

Website Discovery

# First, map the site to find relevant pages
firecrawl_map({
  url: "https://docs.example.com",
  limit: 50
})

# Then scrape specific pages
firecrawl_scrape({ url: "https://docs.example.com/guides/quickstart" })

Web Search

firecrawl_search({
  query: "Effect TypeScript error handling patterns",
  limit: 5
})

Best Practices

  1. Use Agent for unknowns - When you don't know where data lives, let Agent find it
  2. Use scrape for knowns - When you have the URL, scrape is faster and cheaper
  3. Map before crawl - Discover URLs first, then selectively scrape
  4. Use markdown format - Cleaner for LLM consumption
  5. Limit crawl depth - Avoid token overflow with limit parameter
  6. Be specific with prompts - Include library names, versions, and specific requirements

Tool Selection Guide

TaskToolExample
Read known docsscrapeAPI documentation at specific URL
Research patternsagentFind implementation examples anywhere
Site explorationmap + scrapeUnderstand a new library's docs
Quick web searchsearchFind recent articles on a topic
PRD enrichmentscrapeExtract requirements from linked docs
Competitive analysisagentCompare how competitors solve problems
Deep researchagentTechnical investigation across multiple sources

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

95/100Analyzed 2/12/2026

An exceptionally well-documented skill for Firecrawl, providing comprehensive tool descriptions, clear usage scenarios, and advanced examples for structured data extraction and autonomous research.

85
95
90
98
95

Metadata

Licenseunknown
Version-
Updated2/5/2026
Publishermajiayu000

Tags

apillmpromptingsecurity