원클릭으로
firecrawl
Scrape pages, crawl public sites, map URLs, and run JSON-schema extraction through managed or self-hosted Firecrawl.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Scrape pages, crawl public sites, map URLs, and run JSON-schema extraction through managed or self-hosted Firecrawl.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | firecrawl |
| description | Scrape pages, crawl public sites, map URLs, and run JSON-schema extraction through managed or self-hosted Firecrawl. |
| user-invocable | true |
| requires | {"bins":["node"]} |
| credentials | [{"id":"firecrawl-api-key","kind":"api_key","required":false,"secret_ref":{"source":"store","id":"FIRECRAWL_API_KEY"},"scope":"api.firecrawl.dev","how_to_obtain":"Create a managed Firecrawl API key in the Firecrawl dashboard. Set `FIRECRAWL_API_KEY` through browser admin at the active `/admin/secrets` route; if browser admin is unavailable, use `/secret set FIRECRAWL_API_KEY \"<fc-api-key>\"` in browser `/chat` or TUI; local console fallback: `hybridclaw secret set FIRECRAWL_API_KEY \"<fc-api-key>\"`."},{"id":"firecrawl-self-host-api-key","kind":"api_key","required":false,"secret_ref":{"source":"store","id":"FIRECRAWL_SELF_HOST_API_KEY"},"scope":"self-hosted Firecrawl","how_to_obtain":"Set this only when your self-hosted Firecrawl instance has API authentication enabled. Set `FIRECRAWL_SELF_HOST_API_KEY` through browser admin at the active `/admin/secrets` route; if browser admin is unavailable, use `/secret set FIRECRAWL_SELF_HOST_API_KEY \"<self-host-api-key>\"` in browser `/chat` or TUI; local console fallback: `hybridclaw secret set FIRECRAWL_SELF_HOST_API_KEY \"<self-host-api-key>\"`."}] |
| metadata | {"hybridclaw":{"category":"research","short_description":"Firecrawl managed/self-host scrape, crawl, map, and extraction.","tags":["firecrawl","scrape","crawl","extraction","web"],"related_roadmap":["R53","R53.1","R53.2"],"issue":829,"sub_issues":[862,863],"stakes_tiers":{"green":["scrape.url","map.site","extract.structured"],"amber":["crawl.site"]},"cost_measurement":{"system":"UsageTotals","sub_limit_key":"firecrawl"}}} |
Use this skill for unauthenticated public web ingestion when HTTP fetch and server-side parsing are enough. Firecrawl is the cheap path for public pages and docs. Use the browser skill instead when the task needs login, interaction, form filling, visual inspection, or client-side state. Do not use Firecrawl to bypass access controls.
For managed mode, set or update the Firecrawl API key in this order:
/admin/secrets and set
FIRECRAWL_API_KEY./chat or TUI fallback:
/secret set FIRECRAWL_API_KEY "<fc-api-key>".hybridclaw secret set FIRECRAWL_API_KEY "<fc-api-key>"
For a self-hosted Firecrawl instance, set the gateway-reachable base URL in the runtime environment or pass it explicitly to the helper:
export FIRECRAWL_SELF_HOST_BASE_URL="http://firecrawl:3002"
The helper accepts base URLs with or without /v2 and normalizes them to the
v2 API path. If your self-hosted Firecrawl deployment enables API
authentication, set that token separately in the same order:
/admin/secrets and set
FIRECRAWL_SELF_HOST_API_KEY./chat or TUI fallback:
/secret set FIRECRAWL_SELF_HOST_API_KEY "<self-host-api-key>".hybridclaw secret set FIRECRAWL_SELF_HOST_API_KEY "<self-host-api-key>"
Use HTTPS for any self-host endpoint outside a trusted private network, especially when --self-host-auth is enabled; plain HTTP can expose bearer tokens on untrusted networks.
For live calls, run the colocated helper to build an http_request payload and
pass only the emitted httpRequest object to the built-in http_request tool.
The helper sets bearerSecretName: "FIRECRAWL_API_KEY" so the gateway injects
the managed token server-side. In self-host mode, pass --self-host-auth only
when the deployment requires a bearer token; the helper then uses
FIRECRAWL_SELF_HOST_API_KEY. Do not use bash/curl for live Firecrawl calls
when http_request is available, and never ask the user to paste API keys into
chat.
scrape.url: scrape one public URL. Default output is markdown.crawl.site: start a public site crawl with conservative default limit 25.crawl.status: fetch crawl progress and paginated crawl results by job id.crawl.cancel: cancel a crawl job by id.crawl.active: list active crawls for the authenticated Firecrawl team.map.site: return a URL map with conservative default limit 500.extract.structured: start a structured extraction job through POST /v2/extract.extract.status: fetch extraction status and results by job id.Both adapters target Firecrawl API v2. The managed adapter sends requests to
https://api.firecrawl.dev/v2; the self-host adapter sends the same operations
to the configured self-host base URL. Firecrawl self-host deployments may not
enable every upstream managed feature; /agent and /browser are intentionally
outside this skill surface.
For single-page JSON extraction during scraping, scrape.url can include
--schema-json; for the R53.1/R53.2 extract endpoint, use
extract.structured and then poll extract.status.
Run the helper with Node:
node skills/firecrawl/firecrawl.cjs --help
Build a managed single-page scrape request:
node skills/firecrawl/firecrawl.cjs --format json http-request scrape.url \
--url https://example.com/docs \
--format-name markdown
Build the same request for self-hosted Firecrawl:
node skills/firecrawl/firecrawl.cjs --format json --adapter self-host \
--base-url http://firecrawl:3002 \
http-request scrape.url \
--url https://example.com/docs \
--format-name markdown
Add --self-host-auth only if the self-hosted deployment requires
FIRECRAWL_SELF_HOST_API_KEY.
Build a site crawl request:
node skills/firecrawl/firecrawl.cjs --format json http-request crawl.site \
--url https://example.com/docs \
--limit 25 \
--include-path 'docs/.*'
Check or cancel a crawl:
node skills/firecrawl/firecrawl.cjs --format json http-request crawl.status \
--id 00000000-0000-0000-0000-000000000000
node skills/firecrawl/firecrawl.cjs --format json http-request crawl.cancel \
--id 00000000-0000-0000-0000-000000000000
Build a URL map request:
node skills/firecrawl/firecrawl.cjs --format json http-request map.site \
--url https://example.com \
--limit 500 \
--sitemap include
Build a structured extraction request:
node skills/firecrawl/firecrawl.cjs --format json http-request extract.structured \
--url 'https://example.com/pricing/*' \
--schema-json '{"type":"object","properties":{"plans":{"type":"array"}}}' \
--prompt "Extract plan names and prices."
Check an extraction job:
node skills/firecrawl/firecrawl.cjs --format json http-request extract.status \
--id 00000000-0000-0000-0000-000000000000
The helper prints a wrapper such as
{ "command": "http-request", "httpRequest": { ... } }. Pass only the
httpRequest value to the built-in http_request tool.
http or https and must not embed credentials.--base-url or FIRECRAWL_SELF_HOST_BASE_URL; API base URLs must be http or https and must not embed credentials.crawl.site always emits ignoreRobotsTxt: false.--ignore-robots-txt.--zero-data-retention only when the Firecrawl team has enabled it for the configured account or self-hosted deployment.FIRECRAWL_API_KEY is not set, unavailable, missing,
or unresolved mean the active HybridClaw runtime cannot resolve the stored
secret. Ask the operator to set it in the same runtime/session.FIRECRAWL_API_KEY is blocked by policy mean the
secret exists but policy/runtime access blocked injection. Do not ask the
operator to set the same secret again.FIRECRAWL_SELF_HOST_BASE_URL is missing mean the
operator needs to configure the gateway-reachable Firecrawl API origin.Work with Lexware Office contacts, products, invoices, quotations, bookkeeping vouchers, receipts, payment status, and guarded invoice, quotation, or expense writes through the Public API.
Search Airtable bases and tables, read records and computed fields, and prepare guarded record CRUD requests with schema-based field validation.
Expose HybridClaw as a custom Alexa skill and prepare guarded Alexa smart-home/device control payloads without exposing Amazon credentials.
Read Blink camera and video-doorbell state, list motion clips, and prepare guarded home-security control requests without exposing Blink credentials.
Read BYD Battery-Box HVS/HVM/LVS/LVL home-storage telemetry through local Modbus or paired-inverter delegation, with read-only safety boundaries.
Harvest monthly SaaS billing invoices into normalized records and official PDF files.