askill
firecrawl-install-auth

firecrawl-install-authSafety 95Repository

Install and configure FireCrawl SDK/CLI authentication. Use when setting up a new FireCrawl integration, configuring API keys, or initializing FireCrawl in your project. Trigger with phrases like "install firecrawl", "setup firecrawl", "firecrawl auth", "configure firecrawl API key".

0 stars
1.2k downloads
Updated 2/12/2026

Package Files

Loading files...
SKILL.md

FireCrawl Install & Auth

Overview

Set up FireCrawl SDK/CLI and configure authentication credentials.

Prerequisites

  • Node.js 18+ or Python 3.10+
  • Package manager (npm, pnpm, or pip)
  • FireCrawl account with API access
  • API key from FireCrawl dashboard

Instructions

Step 1: Install SDK

# Node.js
npm install @firecrawl/sdk

# Python
pip install firecrawl

Step 2: Configure Authentication

# Set environment variable
export FIRECRAWL_API_KEY="your-api-key"

# Or create .env file
echo 'FIRECRAWL_API_KEY=your-api-key' >> .env

Step 3: Verify Connection

// Test connection code here

Output

  • Installed SDK package in node_modules or site-packages
  • Environment variable or .env file with API key
  • Successful connection verification output

Error Handling

ErrorCauseSolution
Invalid API KeyIncorrect or expired keyVerify key in FireCrawl dashboard
Rate LimitedExceeded quotaCheck quota at https://docs.firecrawl.com
Network ErrorFirewall blockingEnsure outbound HTTPS allowed
Module Not FoundInstallation failedRun npm install or pip install again

Examples

TypeScript Setup

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

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

Python Setup

from firecrawl import FireCrawlClient

client = FireCrawlClient(
    api_key=os.environ.get('FIRECRAWL_API_KEY')
)

Resources

Next Steps

After successful auth, proceed to firecrawl-hello-world for your first API call.

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

90/100Analyzed 2/20/2026

High-quality skill for installing and configuring FireCrawl SDK/CLI authentication. Well-structured with clear prerequisites, step-by-step instructions for both Node.js and Python, error handling table, and working code examples. Uses proper security practices (environment variables). Minor gap in verification step placeholder. Generic and reusable across projects.

95
90
85
90
85

Metadata

Licenseunknown
Version1.0.0
Updated2/12/2026
PublisherHelixDevelopment

Tags

apisecuritytesting