Firecrawler

PassAudited by ClawScan on May 1, 2026.

Overview

Firecrawler is a coherent Firecrawl API helper, with expected notes around its API key, third-party provider use, and unpinned SDK install.

This skill appears appropriate for Firecrawl-based scraping and crawling. Before installing, configure a Firecrawl API key you are comfortable using, be mindful of credit costs, avoid sending sensitive URLs or prompts, and consider pinning the Firecrawl SDK version.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Using the skill can spend Firecrawl credits under the configured account.

Why it was flagged

The skill requires a Firecrawl API key, while the registry metadata says there is no primary credential or required environment variable. This is disclosed and purpose-aligned, but it gives the skill access to the user's Firecrawl account credits.

Skill content
export FIRECRAWL_API_KEY=fc-your-key-here
Recommendation

Use a Firecrawl key with appropriate account limits and remove or rotate it if you stop using the skill.

What this means

A future or unexpected SDK version could behave differently from the version the author tested.

Why it was flagged

The setup installs an unpinned third-party SDK. This is expected for a Firecrawl integration, but the artifacts do not pin a version or provide a lockfile.

Skill content
pip3 install firecrawl
Recommendation

Install the SDK from a trusted package index and consider pinning a known-good Firecrawl SDK version in your environment.

What this means

Large crawls may spend API credits or collect more web content than intended.

Why it was flagged

The skill can crawl many pages through Firecrawl. This is central to the stated purpose and the documentation warns about credits, but users should keep limits reasonable.

Skill content
python3 fc.py crawl "https://docs.example.com" --limit 50 --output ./docs
Recommendation

Set explicit, modest crawl and map limits and review the target URL before running broad crawls.

What this means

Information included in URLs, search queries, extraction prompts, or schemas may be sent to Firecrawl.

Why it was flagged

The script uses Firecrawl as an external provider for URLs, searches, screenshots, and extraction requests. This is disclosed by the skill purpose, but user-supplied URLs, queries, schemas, and prompts may be processed by that provider.

Skill content
return Firecrawl(api_key=api_key)
Recommendation

Avoid sending private URLs, secrets, or sensitive prompts unless Firecrawl's data handling is acceptable for your use case.