npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@intentsolutionsio/firecrawl-pack

v1.0.2

Published

Claude Code skill pack for FireCrawl - 30 skills covering web scraping and LLM-ready markdown

Downloads

21

Readme

Firecrawl Skill Pack

30 Claude Code skills for Firecrawl — turn any website into LLM-ready markdown with scrape, crawl, map, and extract APIs

What It Does

Firecrawl converts websites into clean markdown or structured JSON for LLM consumption. It handles JavaScript rendering, anti-bot bypassing, and pagination automatically. This skill pack teaches Claude Code every Firecrawl pattern from hello-world to enterprise content pipelines.

SDK: @mendable/firecrawl-js (npm) / firecrawl-py (PyPI) API: api.firecrawl.dev/v1 — scrape, crawl, map, extract, batch scrape Pricing: Credit-based (1 credit = 1 page scraped)

Installation

/plugin install firecrawl-pack@claude-code-plugins-plus

Skills (30)

Getting Started (S01-S04)

| Skill | What It Covers | |-------|---------------| | firecrawl-install-auth | Install @mendable/firecrawl-js, configure FIRECRAWL_API_KEY, verify connection | | firecrawl-hello-world | Four minimal examples: scrape, crawl, map, extract | | firecrawl-local-dev-loop | Self-hosted Docker for zero-credit dev, vitest mocks, integration tests | | firecrawl-sdk-patterns | Singleton client, typed wrappers, retry with backoff, Zod validation |

Core Workflows (S05-S06)

| Skill | What It Covers | |-------|---------------| | firecrawl-core-workflow-a | scrapeUrl + crawlUrl + asyncCrawlUrl with polling and content processing | | firecrawl-core-workflow-b | extract with JSON schemas, batchScrapeUrls, mapUrl + selective scrape |

Operations (S07-S12)

| Skill | What It Covers | |-------|---------------| | firecrawl-common-errors | Fix 401/402/429/500 errors, empty markdown, stuck crawls, wrong package name | | firecrawl-debug-bundle | Collect SDK version, API health, credit balance, diagnostic scrape for support | | firecrawl-rate-limits | Exponential backoff, p-queue concurrency, proactive throttling, batch endpoints | | firecrawl-security-basics | API key storage, webhook HMAC-SHA256 verification, key rotation, content sanitization | | firecrawl-prod-checklist | Pre-deploy validation: credentials, crawl limits, error handling, monitoring, rollback | | firecrawl-upgrade-migration | v0 to v1/v2 migration: crawlerOptions to flat options, new methods, breaking changes |

Pro (P13-P18)

| Skill | What It Covers | |-------|---------------| | firecrawl-ci-integration | GitHub Actions workflow, integration tests, mock-based unit tests, credit-aware CI | | firecrawl-deploy-integration | Vercel serverless, Cloud Run, self-hosted Docker Compose, webhook endpoints | | firecrawl-webhooks-events | crawl.started/page/completed events, signature verification, polling fallback | | firecrawl-performance-tuning | Format selection, waitFor tuning, LRU caching, batch vs individual, map-first pattern | | firecrawl-cost-tuning | Crawl limits, map+selective scrape, caching, credit monitoring, budget enforcement | | firecrawl-reference-architecture | Scrape/crawl/map/extract pipeline, content processing, chunking, storage patterns |

Flagship (F19-F24)

| Skill | What It Covers | |-------|---------------| | firecrawl-multi-env-setup | Dev/staging/prod config, self-hosted Docker for dev, credit-safe wrappers | | firecrawl-observability | Scrape metrics, credit burn tracking, content quality scoring, Prometheus alerts | | firecrawl-incident-runbook | Quick triage, decision tree by error code, communication templates, postmortem | | firecrawl-data-handling | Markdown cleaning, Zod-validated extraction, deduplication, RAG chunking, storage | | firecrawl-enterprise-rbac | Per-team API keys, domain allowlists, credit budgets, gateway proxy pattern | | firecrawl-migration-deep-dive | Migrate from Puppeteer/Playwright/Cheerio to Firecrawl with adapter pattern |

Flagship+ (X25-X30)

| Skill | What It Covers | |-------|---------------| | firecrawl-advanced-troubleshooting | Layer-by-layer isolation, empty scrape debugging, screenshot diagnosis, timing analysis | | firecrawl-load-scale | Throughput measurement, batch scaling, p-queue workers, parallel async crawls | | firecrawl-reliability-patterns | Circuit breaker, crawl-to-scrape fallback, content validation, credit guard | | firecrawl-policy-guardrails | Domain blocklists, credit budgets, content quality gates, per-domain rate limits | | firecrawl-architecture-variants | On-demand vs scheduled pipeline vs real-time RAG ingestion decision guide | | firecrawl-known-pitfalls | 10 anti-patterns with BAD/GOOD code: unbounded crawl, wrong import, no validation |

Quick Start

import FirecrawlApp from "@mendable/firecrawl-js";

const firecrawl = new FirecrawlApp({
  apiKey: process.env.FIRECRAWL_API_KEY!,
});

// Scrape a page to markdown
const page = await firecrawl.scrapeUrl("https://docs.example.com", {
  formats: ["markdown"],
  onlyMainContent: true,
});

// Crawl an entire site
const site = await firecrawl.crawlUrl("https://docs.example.com", {
  limit: 50,
  scrapeOptions: { formats: ["markdown"] },
});

// Discover all URLs instantly
const map = await firecrawl.mapUrl("https://docs.example.com");

// Extract structured data with LLM
const data = await firecrawl.scrapeUrl("https://example.com/pricing", {
  formats: ["extract"],
  extract: { schema: { type: "object", properties: { plans: { type: "array" } } } },
});

Key Links

License

MIT