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.zipInstalls 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".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
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-authsetup - 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
| Error | Cause | Solution |
|---|---|---|
| Import Error | SDK not installed | Verify with npm list or pip show |
| Auth Error | Invalid credentials | Check environment variable is set |
| Timeout | Network issues | Increase timeout or check connectivity |
| Rate Limit | Too many requests | Wait 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
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.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| firecrawl-hello-world (this skill) | 0 | 7mo | Review | Beginner |
| firecrawl-scrape | 5 | 7mo | Review | Beginner |
| batch-research | 1 | 7mo | No flags | Intermediate |
| spider | 0 | 4mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by HelixDevelopment
View all by HelixDevelopment →You might also like
firecrawl-scrape
parcadei
Scrape web pages and extract content via Firecrawl MCP
batch-research
miantiao-me
批量数据采集技能,负责分批并发调度 researcher agent 抓取所有数据源。
spider
szhshp
>-
firecrawl
hardjunior
|
douyin-scraper-skill
orange-suli
douyin-scraper-skill — an agent skill by orange-suli.
open-browser
JasonHonKL
Use this skill whenever the task involves browsing web pages, extracting page content, clicking forms, or completing web workflows. Triggers include: navigating URLs, scraping or extracting page data, filling and submitting forms, handling login flows, interacting with SPAs (React/Vue/Angular), read