Skill · em Dados, IA e pesquisa

firecrawl-crawl

Bulk-extract many pages from one site or section. Use for "crawl", "everything under /docs", or content spanning linked pages.

Procedência

Antes de instalar

1 arquivo · 1,8 KB · só texto, nenhum script

Instalar na sua CLI

O comando baixa a versão fixada (commit 8f954f6) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.

Claude Code

Neste projeto: instala em .claude/skills/firecrawl-crawl/.

d=".claude/skills/firecrawl-crawl"
u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-crawl"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Global: instala em ~/.claude/skills/firecrawl-crawl/.

d="$HOME/.claude/skills/firecrawl-crawl"
u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-crawl"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Codex

Neste projeto: instala em .agents/skills/firecrawl-crawl/.

d=".agents/skills/firecrawl-crawl"
u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-crawl"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Global: instala em ~/.agents/skills/firecrawl-crawl/.

d="$HOME/.agents/skills/firecrawl-crawl"
u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-crawl"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Antigravity

Neste projeto: instala em .agents/skills/firecrawl-crawl/.

d=".agents/skills/firecrawl-crawl"
u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-crawl"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Global: instala em ~/.gemini/antigravity-cli/skills/firecrawl-crawl/.

d="$HOME/.gemini/antigravity-cli/skills/firecrawl-crawl"
u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-crawl"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Peça ao Rook

Já usa o Rook Labs? Cole no chat do Rook: instale a skill https://rooklabs.sh/marketplace/firecrawl.cli.firecrawl-crawl

Prévia do SKILL.md

---
name: firecrawl-crawl
description: |
  Bulk-extract many pages from one site or section. Use for "crawl", "everything under /docs", or content spanning linked pages.
allowed-tools:
  - Bash(firecrawl *)
  - Bash(npx firecrawl-cli *)
---

# firecrawl crawl

Bulk extract content from a website. Crawls pages following links up to a depth/limit.

**Prerequisite:** `crawl` requires authentication (no keyless free tier); without credentials the CLI prompts an interactive login.

## Quick start

```bash
# Crawl a docs section
firecrawl crawl "<url>" --include-paths /docs --limit 50 --wait -o .firecrawl/crawl.json

# Full crawl with depth limit
firecrawl crawl "<url>" --max-depth 3 --wait --progress -o .firecrawl/crawl.json

# Check status of a running crawl
firecrawl crawl <job-id>
```

Run `firecrawl crawl --help` for the full option list.

**Done when:** the crawl reaches a terminal status and the saved output under `.firecrawl/` contains the expected pages.

## Tips

- Use `--wait` when you need the results immediately. It has no default timeout; use `--timeout <seconds>` to bound polling. Without `--wait`, crawl returns a job ID for async polling.
- **Scope crawls with `--include-paths`** whenever the request names a section — crawl only the pages you need.
- Crawl consumes credits per page. Check `firecrawl credit-usage` before large crawls (`credit-usage` requires authentication).

## See also
…

Ver todo o marketplace