{
  "markdown": "# Firecrawl Skills\n\nThe full catalog of Firecrawl skills for AI coding agents, following the [Agent Skills](https://agentskills.io) format. Available as a plugin for Claude Code, Cursor, and OpenAI Codex.\n\n> **This repository is a distribution catalog.** Every directory under `skills/` is a CI-synced mirror. Install skills from here; contribute skill changes at the source repository. Repository-level metadata is maintained here.\n\n## Install\n\n```bash\nnpx skills add firecrawl/skills\n```\n\nWithout `-y` this opens an interactive picker over the whole catalog. Install a specific skill by name (names are path-independent):\n\n```bash\nnpx skills add firecrawl/skills --skill firecrawl-build\n```\n\nFor CLI onboarding (installs the Firecrawl CLI plus the core skills, with optional workflow skills):\n\n```bash\nnpx -y firecrawl-cli@latest init\n```\n\n## Catalog layout\n\n| Category | Path | What it's for | Source of truth |\n|---|---|---|---|\n| Core | [`skills/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`](https://github.com/firecrawl/cli/tree/main/skills) |\n| Build | [`skills/build/`](./skills/build) | Integrating Firecrawl APIs into product code: SDKs, REST, endpoint selection, API keys | [`firecrawl/firecrawl`](https://github.com/firecrawl/firecrawl/tree/main/skills) (`skills/`) |\n| Workflows | [`skills/workflows/`](./skills/workflows) | End-to-end session recipes: lead gen, deep research, SEO audit, knowledge bases, and more | [`firecrawl/firecrawl-workflows`](https://github.com/firecrawl/firecrawl-workflows) |\n\n## Contributing: where does my PR go?\n\n- **Core skills, including the research and developer index skills** → PR [`firecrawl/cli`](https://github.com/firecrawl/cli).\n- **Build/SDK skills** → PR [`firecrawl/firecrawl`](https://github.com/firecrawl/firecrawl) (`skills/`).\n- **Workflow skills** → PR [`firecrawl/firecrawl-workflows`](https://github.com/firecrawl/firecrawl-workflows).\n\nDo not submit changes to files under `skills/` in this catalog. CI replaces those directories during the next source sync. Repository-level metadata is maintained here.\n\n## Skills\n\n### Core (`skills/core/`)\n\nSkills that teach agents the [Firecrawl CLI](https://github.com/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:\n\n| Skill                                                                  | Description                                                                                                                      |\n| ---------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |\n| [`firecrawl-research-index`](./skills/core/firecrawl-research-index)   | Find papers in the research paper index — biomedical and life-science literature (PubMed, bioRxiv, medRxiv) plus arXiv preprints |\n| [`firecrawl-developer-index`](./skills/core/firecrawl-developer-index) | Answer developer questions from issues, pull requests, READMEs, and documentation pages                                          |\n\n### Build (`skills/build/`)\n\n| Skill                                                                     | Description                                                             |\n| ------------------------------------------------------------------------- | ----------------------------------------------------------------------- |\n| [`firecrawl-build`](./skills/build/firecrawl-build)                       | Firecrawl application API umbrella skill                                |\n| [`firecrawl-build-onboarding`](./skills/build/firecrawl-build-onboarding) | Get `FIRECRAWL_API_KEY` into a project and choose the right SDK/docs    |\n| [`firecrawl-build-scrape`](./skills/build/firecrawl-build-scrape)         | Integrate `/scrape` for single-page extraction                          |\n| [`firecrawl-build-search`](./skills/build/firecrawl-build-search)         | Integrate `/search` for discovery-first workflows                       |\n| [`firecrawl-build-interact`](./skills/build/firecrawl-build-interact)     | Integrate `/interact` for clicks, forms, and dynamic flows after scrape |\n\n### Workflows (`skills/workflows/`)\n\nEnd-to-end recipes such as [`firecrawl-lead-gen`](./skills/workflows/firecrawl-lead-gen), [`firecrawl-deep-research`](./skills/workflows/firecrawl-deep-research), [`firecrawl-seo-audit`](./skills/workflows/firecrawl-seo-audit), [`firecrawl-competitive-intel`](./skills/workflows/firecrawl-competitive-intel), and more — see [`skills/workflows/`](./skills/workflows) for the full set, and [`firecrawl-workflows`](./skills/workflows/firecrawl-workflows) for the umbrella skill and authoring guide.\n\n## MCP Server\n\nThe plugin includes Firecrawl MCP configuration for the official [Firecrawl MCP server](https://github.com/firecrawl/firecrawl-mcp-server), so editors that support bundled MCP metadata can wire Firecrawl tools with `FIRECRAWL_API_KEY`.\n\n## Plugins\n\nThis repo serves as a plugin for multiple platforms, bundling the core and build skills (workflows are session recipes, not editor-integration material):\n\n- **Claude Code** - `.claude-plugin/`\n- **Cursor** - `.cursor-plugin/`\n- **OpenAI Codex** - `.codex-plugin/`\n\n## Prerequisites\n\n- A Firecrawl account or self-hosted Firecrawl deployment\n- API key stored in `FIRECRAWL_API_KEY` for cloud usage\n\nGet your API key at [firecrawl.dev/app](https://www.firecrawl.dev/app). If you do not have one yet, [`firecrawl-build-onboarding`](./skills/build/firecrawl-build-onboarding) includes the browser authorization flow.\n\n## Which skills do I need?\n\n- **\"Search/scrape the web for me right now, during this session\"** → core skills (`skills/core/`)\n- **\"Query published research papers or developer docs indexes\"** → index skills (`skills/core/`)\n- **\"Add Firecrawl to this codebase\"** → build skills (`skills/build/`)\n- **\"Run an end-to-end task like lead gen or deep research\"** → workflow skills (`skills/workflows/`)\n\nBoth usage paths follow Firecrawl's onboarding skill (same install, different use cases): [firecrawl.dev/agent-onboarding/SKILL.md](https://www.firecrawl.dev/agent-onboarding/SKILL.md).\n\n## Docs (Source of Truth)\n\nRead the source-of-truth page for your project language:\n\n- **Node / TypeScript**: [docs.firecrawl.dev/agent-source-of-truth/node](https://docs.firecrawl.dev/agent-source-of-truth/node)\n- **Python**: [docs.firecrawl.dev/agent-source-of-truth/python](https://docs.firecrawl.dev/agent-source-of-truth/python)\n- **Rust**: [docs.firecrawl.dev/agent-source-of-truth/rust](https://docs.firecrawl.dev/agent-source-of-truth/rust)\n- **Java**: [docs.firecrawl.dev/agent-source-of-truth/java](https://docs.firecrawl.dev/agent-source-of-truth/java)\n- **Elixir**: [docs.firecrawl.dev/agent-source-of-truth/elixir](https://docs.firecrawl.dev/agent-source-of-truth/elixir)\n- **cURL / REST**: [docs.firecrawl.dev/agent-source-of-truth/curl](https://docs.firecrawl.dev/agent-source-of-truth/curl)\n\n## License\n\nISC\n",
  "bytes": 7414,
  "sha": "35a283a7c1f456776597c4d6374d2fa7418b0a7c4f13725984f30aac3a96e569",
  "repo_slug": "firecrawl/skills",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/skl_firecrawl_skills_firecrawl_interact_230b31b7/readme"
}