Skill · em Dados, IA e pesquisa

firecrawl-download

Save a site or section as local files (markdown, screenshots). Use for "download the site", offline docs, or a local copy for reference.

Procedência

Antes de instalar

1 arquivo · 2 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-download/.

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

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

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

Codex

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

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

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

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

Antigravity

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

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

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

d="$HOME/.gemini/antigravity-cli/skills/firecrawl-download"
u="https://raw.githubusercontent.com/firecrawl/cli/8f954f6e9f12721bc29135b115dd9bc085d29d2d/skills/firecrawl-download"
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-download

Prévia do SKILL.md

---
name: firecrawl-download
description: |
  Save a site or section as local files (markdown, screenshots). Use for "download the site", offline docs, or a local copy for reference.
allowed-tools:
  - Bash(firecrawl *)
  - Bash(npx firecrawl-cli *)
---

# firecrawl download (invoked as `firecrawl x download`)

> **Experimental.** `download` is available under the `firecrawl x` command group.

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

Maps the site origin first to discover pages, then scrapes each one into nested directories under `.firecrawl/`. Use `--include-paths` to scope a non-root URL to one section. Automated runs always pass `-y` — without it the command opens an interactive wizard that blocks on a prompt.

## Quick start

```bash
# With screenshots
firecrawl x download https://docs.example.com --screenshot --limit 20 -y

# Multiple formats (each saved as its own file per page)
firecrawl x download https://docs.example.com --format markdown,links --screenshot --limit 20 -y
# Creates per page: index.md + links.txt + screenshot.png

# Filter to specific sections
firecrawl x download https://docs.example.com --include-paths "/features,/sdks" -y

# Skip translations
firecrawl x download https://docs.example.com --exclude-paths "/zh,/ja,/fr,/es,/pt-BR" -y
```

Run `firecrawl x download --help` for the full option list, including which scrape options download supports.

**Done when:** the command exits successfully and the expected files exist under `.firecrawl/`.

## See also
…

Ver todo o marketplace