firecrawl/firecrawl-build-onboarding
Get Firecrawl credentials and SDK setup into a project. Use when an application needs `FIRECRAWL_API_KEY`, when an agent should add Firecrawl to `.env`, when the user wants to authenticate Firecrawl for app code, or when choosing the first SDK and docs for a new Firecrawl integration. This skill includes its own browser auth flow, so it does not depend on the website onboarding skill.
npx skills add https://github.com/firecrawl/skills --skill firecrawl-build-onboarding
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/cliTake firecrawl/firecrawl-build-onboarding from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npx.
Without those the skill loads but fails at the first command.