jpskill.com
🛠️ 開発・MCP コミュニティ

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.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o firecrawl-build-onboarding.zip https://jpskill.com/download/19113.zip && unzip -o firecrawl-build-onboarding.zip && rm firecrawl-build-onboarding.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/19113.zip -OutFile "$d\firecrawl-build-onboarding.zip"; Expand-Archive "$d\firecrawl-build-onboarding.zip" -DestinationPath $d -Force; ri "$d\firecrawl-build-onboarding.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して firecrawl-build-onboarding.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → firecrawl-build-onboarding フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
4

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Firecrawl Build オンボーディング

このスキルは、Firecrawl のオンボーディングフローにおけるアプリケーション統合パスに使用します。

インストール

まだインストールしていない場合は、以下のコマンド一つで CLI ツール(ライブウェブ作業用)とビルドスキル(アプリ統合用)の両方をセットアップできます。

npx -y firecrawl-cli@latest init --all --browser

これにより、Firecrawl CLI、CLI スキル、およびこれらのビルドスキルがまとめてインストールされます。また、ブラウザ認証が開かれ、ユーザーがサインインまたはアカウントを作成できるようになります。別途 npx skills add ステップは不要です。

このスキルを使用するタイミング

  • プロジェクトで FIRECRAWL_API_KEY が必要な場合
  • ユーザーが Firecrawl を .env に組み込みたい場合
  • アプリに Firecrawl を初めて追加する場合
  • 最初の SDK または REST パスを選択する必要がある場合

ユーザーがまだサインアップ、サインイン、またはブラウザでのアクセス承認が必要な場合は、このスキル内の認証フローリファレンスを使用してください。

クイックスタート

ユーザーがすでに API キーを持っている場合は、.env に配置してください。

FIRECRAWL_API_KEY=fc-...

プロジェクトがセルフホストされている場合は、以下も設定してください。

FIRECRAWL_API_URL=https://your-firecrawl-instance.example.com

次に、どの統合パスが適用されるかを決定します。

  • 新規プロジェクト -> ターゲットスタックを選択し、SDK をインストールし、最初の Firecrawl 呼び出しを追加して、スモークテストを実行します
  • 既存プロジェクト -> まずリポジトリを検査し、プロジェクトがすでにサードパーティ API と環境変数を扱っている場所に Firecrawl を統合します

何が必要ですか?

タスク リファレンス
ブラウザ認証フローを実行し、FIRECRAWL_API_KEY を保存する references/auth-flow.md
適切な SDK をインストールする references/sdk-installation.md
.env またはプロジェクト設定に認証情報を配置する references/project-setup.md
セットアップ後に適切なエンドポイントを選択する firecrawl-build
このタスク中にライブウェブツールが必要な場合 CLI スキルは同じコマンドからすでにインストールされています
既知の URL から実装を開始する firecrawl-build-scrape
クエリから実装を開始する firecrawl-build-search

ドキュメント(信頼できる情報源)

SDK の使用法、スキーマ、および例については、プロジェクト言語の信頼できる情報源ページを参照してください。

セットアップ後

キーが存在したら、次の手順を実行します。

  1. これが新規プロジェクトか既存のコードベースかを決定します
  2. Firecrawl が製品で何をすべきかを尋ねます
  3. その動作に一致する最も狭いエンドポイントを選択します
  4. コードを記述する前に、プロジェクト言語の信頼できる情報源ページを読みます
  5. コードに SDK または REST 呼び出しを追加します
  6. 実際の Firecrawl リクエストが成功することを証明するスモークテストを実行します
  7. 実装ガイダンスについては、このリポジトリのエンドポイント固有のスキルを使用します
  8. 現在のタスク中にライブウェブツールも必要な場合は、CLI スキルがすでにインストールされています — firecrawl/cli を使用してください
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Firecrawl Build Onboarding

Use this skill for the application-integration path from Firecrawl's onboarding flow.

Install

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.

Use This When

  • a project needs FIRECRAWL_API_KEY
  • the user wants Firecrawl wired into .env
  • you are adding Firecrawl to an app for the first time
  • you need to choose the first SDK or REST path

If the human still needs to sign up, sign in, or authorize access in the browser, use the auth flow reference in this skill.

Quick Start

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:

  • Fresh project -> choose the target stack, install the SDK, add the first Firecrawl call, and run a smoke test
  • Existing project -> inspect the repo first, then integrate Firecrawl where the project already handles third-party APIs and env vars

What Do You Need?

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

Docs (Source of Truth)

Read the source-of-truth page for your project language for SDK usage, schemas, and examples:

After Setup

Once the key is present:

  1. decide whether this is a fresh project or an existing codebase
  2. ask what Firecrawl should do in the product
  3. pick the narrowest endpoint that matches that behavior
  4. read the source-of-truth page for the project language before writing code
  5. add the SDK or REST call in code
  6. run a smoke test that proves one real Firecrawl request succeeds
  7. use the endpoint-specific skills in this repo for implementation guidance
  8. if you also need live web tooling during the current task, the CLI skills are already installed — use firecrawl/cli

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。