From Firecrawl
Wires Firecrawl credentials into `.env`, guides SDK installation, and runs browser auth flow for app integration.
How this skill is triggered — by the user, by Claude, or both
Slash command
/firecrawl:firecrawl-build-onboardingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill for the application-integration path from Firecrawl's onboarding flow.
Use this skill for the application-integration path from Firecrawl's onboarding flow.
If you haven't installed yet, one command sets up both the CLI tools (for live web work) and the build skills (for app integration):
npx -y firecrawl-cli@latest init --all --browser
This installs the Firecrawl CLI, the CLI skills, and these build skills
together. It also opens browser auth so the human can sign in or create
an account. No separate npx skills add step is needed.
FIRECRAWL_API_KEY.envIf the human still needs to sign up, sign in, or authorize access in the browser, use the auth flow reference in this skill.
If the user already has an API key, place it in .env:
FIRECRAWL_API_KEY=fc-...
If the project is self-hosted, also set:
FIRECRAWL_API_URL=https://your-firecrawl-instance.example.com
Then decide which integration path applies:
| Task | Reference |
|---|---|
Run the browser auth flow and save FIRECRAWL_API_KEY | references/auth-flow.md |
| Install the right SDK | references/sdk-installation.md |
Put credentials into .env or project config | references/project-setup.md |
| Choose the right endpoint after setup | firecrawl-build |
| Need live web tooling during this task | The CLI skills are already installed from the same command |
| Start implementation from a known URL | firecrawl-build-scrape |
| Start implementation from a query | firecrawl-build-search |
Read the source-of-truth page for your project language for SDK usage, schemas, and examples:
Once the key is present:
firecrawl/clinpx claudepluginhub firecrawl/skills --plugin firecrawlInstalls Firecrawl SDK and configures API key for web scraping in Node.js or Python projects. Verifies connection with code examples.
Integrates Firecrawl web data capabilities into application code: web search, scraping, structured extraction, and browser interaction. Activates when building features that need live web data.
Installs Apify SDK, CLI, apify-client, and Crawlee packages and configures API token authentication via env vars or CLI for Node.js scraping projects.