FI

firecrawl-hello-world

Bootstrap a FireCrawl project with a simple working example.

Install

mkdir -p .claude/skills/firecrawl-hello-world-helixdevelopment && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/16989" && unzip -o skill.zip -d .claude/skills/firecrawl-hello-world-helixdevelopment && rm skill.zip

Installs to .claude/skills/firecrawl-hello-world-helixdevelopment

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Create a minimal working FireCrawl example. Use when starting a new FireCrawl integration, testing your setup, or learning basic FireCrawl API patterns. Trigger with phrases like "firecrawl hello world", "firecrawl example", "firecrawl quick start", "simple firecrawl code".
274 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Beginner

Key capabilities

  • Create a new entry file for a FireCrawl example
  • Import and initialize the `FireCrawlClient`
  • Make the first API call using the initialized client
  • Verify successful connection with a console output message
  • Handle import errors if the SDK is not installed
  • Handle authentication errors due to invalid credentials

How it works

This skill provides a minimal working example for FireCrawl by guiding the creation of an entry file, importing and initializing the `FireCrawlClient` with an API key, and making a first API call to confirm connection.

Inputs & outputs

You give it
TypeScript or Python code snippet for FireCrawl client initialization and API call
You get back
Working code file, successful API response, and console output confirming connection

When to use firecrawl-hello-world

  • Learning FireCrawl API
  • Testing API credentials
  • Quick start integration

About this skill

FireCrawl Hello World

Overview

Minimal working example demonstrating core FireCrawl functionality.

Prerequisites

  • Completed firecrawl-install-auth setup
  • Valid API credentials configured
  • Development environment ready

Instructions

Step 1: Create Entry File

Create a new file for your hello world example.

Step 2: Import and Initialize Client

import { FireCrawlClient } from '@firecrawl/sdk';

const client = new FireCrawlClient({
  apiKey: process.env.FIRECRAWL_API_KEY,
});

Step 3: Make Your First API Call

async function main() {
  // Your first API call here
}

main().catch(console.error);

Output

  • Working code file with FireCrawl client initialization
  • Successful API response confirming connection
  • Console output showing:
Success! Your FireCrawl connection is working.

Error Handling

ErrorCauseSolution
Import ErrorSDK not installedVerify with npm list or pip show
Auth ErrorInvalid credentialsCheck environment variable is set
TimeoutNetwork issuesIncrease timeout or check connectivity
Rate LimitToo many requestsWait and retry with exponential backoff

Examples

TypeScript Example

import { FireCrawlClient } from '@firecrawl/sdk';

const client = new FireCrawlClient({
  apiKey: process.env.FIRECRAWL_API_KEY,
});

async function main() {
  // Your first API call here
}

main().catch(console.error);

Python Example

from firecrawl import FireCrawlClient

client = FireCrawlClient()

# Your first API call here

Resources

Next Steps

Proceed to firecrawl-local-dev-loop for development workflow setup.

When not to use it

  • When `firecrawl-install-auth` setup is not completed
  • When valid API credentials are not configured

Prerequisites

firecrawl-install-auth setupValid API credentialsDevelopment environment

Limitations

  • Requires `FIRECRAWL_API_KEY` to be set as an environment variable
  • Assumes basic familiarity with TypeScript or Python syntax
  • Focuses on initial connection and basic API call verification

How it compares

This skill offers a quick-start template for FireCrawl integration, providing a direct path to verifying API connectivity compared to setting up a project from scratch.

Compared to similar skills

firecrawl-hello-world side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
firecrawl-hello-world (this skill)07moReviewBeginner
firecrawl-scrape57moReviewBeginner
batch-research17moNo flagsIntermediate
spider04moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry