The full catalog of Firecrawl skills for AI coding agents, following the Agent Skills format. Available as a plugin for Claude Code, Cursor, and OpenAI Codex.
This repo is read-only. Every skill here is CI-synced from its source repo — see Contributing. Install from here; contribute at the source.
npx skills add firecrawl/skillsWithout -y this opens an interactive picker over the whole catalog. Install a specific skill by name (names are path-independent):
npx skills add firecrawl/skills --skill firecrawl-buildFor CLI onboarding (installs the Firecrawl CLI plus the core skills, with optional workflow skills):
npx -y firecrawl-cli@latest init| Category | Path | What it's for | Source of truth |
|---|---|---|---|
| Core | skills/core/ |
The Firecrawl primitives for live web work during an agent session (search, scrape, crawl, interact — via the CLI or MCP), plus the research paper index and developer index skills | firecrawl/cli |
| Build | skills/build/ |
Integrating Firecrawl APIs into product code: SDKs, REST, endpoint selection, API keys | firecrawl monorepo skills/ |
| Workflows | skills/workflows/ |
End-to-end session recipes: lead gen, deep research, SEO audit, knowledge bases, and more | firecrawl/firecrawl-workflows |
Core skills (including the research/developer index skills) → PR
firecrawl/cli. Build/SDK skills → PR thefirecrawlmonorepo (skills/). Workflow skills → PRfirecrawl/firecrawl-workflows. Never PR this catalog — CI overwrites every directory on the next sync.
Skills that teach agents the Firecrawl CLI for live web work — firecrawl, firecrawl-scrape, firecrawl-search, firecrawl-crawl, firecrawl-map, firecrawl-interact, firecrawl-agent, firecrawl-monitor, firecrawl-parse, firecrawl-download — plus the index skills backing the firecrawl research and firecrawl developer commands:
| Skill | Description |
|---|---|
firecrawl-research-index |
Find papers in the research paper index — biomedical and life-science literature (PubMed, bioRxiv, medRxiv) plus arXiv preprints |
firecrawl-developer-index |
Answer developer questions from issues, pull requests, READMEs, and documentation pages |
| Skill | Description |
|---|---|
firecrawl-build |
Firecrawl application API umbrella skill |
firecrawl-build-onboarding |
Get FIRECRAWL_API_KEY into a project and choose the right SDK/docs |
firecrawl-build-scrape |
Integrate /scrape for single-page extraction |
firecrawl-build-search |
Integrate /search for discovery-first workflows |
firecrawl-build-interact |
Integrate /interact for clicks, forms, and dynamic flows after scrape |
End-to-end recipes such as firecrawl-lead-gen, firecrawl-deep-research, firecrawl-seo-audit, firecrawl-competitive-intel, and more — see skills/workflows/ for the full set, and firecrawl-workflows for the umbrella skill and authoring guide.
The plugin includes Firecrawl MCP configuration for the official Firecrawl MCP server, so editors that support bundled MCP metadata can wire Firecrawl tools with FIRECRAWL_API_KEY.
This repo serves as a plugin for multiple platforms, bundling the core and build skills (workflows are session recipes, not editor-integration material):
- Claude Code -
.claude-plugin/ - Cursor -
.cursor-plugin/ - OpenAI Codex -
.codex-plugin/
- A Firecrawl account or self-hosted Firecrawl deployment
- API key stored in
FIRECRAWL_API_KEYfor cloud usage
Get your API key at firecrawl.dev/app. If you do not have one yet, firecrawl-build-onboarding includes the browser authorization flow.
- "Search/scrape the web for me right now, during this session" → core skills (
skills/core/) - "Query published research papers or developer docs indexes" → index skills (
skills/core/) - "Add Firecrawl to this codebase" → build skills (
skills/build/) - "Run an end-to-end task like lead gen or deep research" → workflow skills (
skills/workflows/)
Both usage paths follow Firecrawl's onboarding skill (same install, different use cases): firecrawl.dev/agent-onboarding/SKILL.md.
Read the source-of-truth page for your project language:
- Node / TypeScript: docs.firecrawl.dev/agent-source-of-truth/node
- Python: docs.firecrawl.dev/agent-source-of-truth/python
- Rust: docs.firecrawl.dev/agent-source-of-truth/rust
- Java: docs.firecrawl.dev/agent-source-of-truth/java
- Elixir: docs.firecrawl.dev/agent-source-of-truth/elixir
- cURL / REST: docs.firecrawl.dev/agent-source-of-truth/curl
ISC