firecrawl/cli · Official

firecrawl-parse

Convert a local file (PDF, DOCX, XLSX, HTML, …) to markdown, or answer questions about its content. Use whenever the input is a file path, not a URL.

All-time #526 Trending #2431 Hot #6026 First seen Apr 27, 2026
8-week activity · all time api

Installation

$ npx skills add firecrawl/cli --skill firecrawl-parse

Summary

  • Convert local documents—PDF, DOCX, XLSX, HTML, and more—to clean markdown saved to disk.
  • Supports 8+ file formats including PDF, DOCX, DOC, ODT, RTF, XLSX, XLS, and HTML variants Includes AI-powered summarization ( -S flag) and question-answering ( -Q flag) to extract insights directly from parsed content Outputs to .firecrawl/ directory to avoid bloating context; handles files up to 50 MB with per-page credit consumption Use for local files only; prefer firecrawl-scrape for URLs

Stronger alternatives

Audit results are mixed — compare nearby options before installing.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Security audits

Partner security reviews for this skill.

agent-trust-hub SAFE

Analyzed Apr 27, 2026

This skill enables the agent to parse local documents like PDFs and Word files into markdown using the Firecrawl CLI. It includes features for AI-powered summarization and document querying. The analysis indicates the skill is safe and its operations are standard for the Firecrawl service.

snyk LOW

Analyzed Apr 27, 2026

No issues detected.

socket Score 0.9000 · 1 alerts

Analyzed Apr 27, 2026

  • license 1
  • maintenance 1
  • quality 0.9
  • supply chain 1
  • vulnerability 1

1 alert

Also in this package

Other skills from firecrawl/cli · top by installs.

npx skills add firecrawl/cli

Browse all from firecrawl/cli

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 626
Default branch main
Open issues 16
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash(firecrawl *), Bash(npx firecrawl-cli *)

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,771 B
  • docs SUMMARY.md 174 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 49,626 installs

SKILL.md

firecrawl parse

Turn a local document into clean markdown on disk. Supports PDF, DOCX, DOC, ODT, RTF, XLSX, XLS, HTML/HTM.

Quick start

Always save to .firecrawl/ with -o — parsed docs can be hundreds of KB and blow up context if streamed to stdout. Add .firecrawl/ to .gitignore.

mkdir -p .firecrawl

# File → markdown
firecrawl parse ./paper.pdf -o .firecrawl/paper.md

# AI summary
firecrawl parse ./paper.pdf -S -o .firecrawl/paper-summary.md

# Ask a question about the doc
firecrawl parse ./paper.pdf -Q "What are the main conclusions?" \
  -o .firecrawl/paper-qa.md

Then read the output incrementally with head, grep, or rg.

Run firecrawl parse --help for the full option list.

Done when: the markdown, summary, or answer is written under .firecrawl/ and you have inspected it with bounded reads.

Tips

  • Quote paths with spaces: firecrawl parse "./My Doc.pdf" -o .firecrawl/mydoc.md.
  • Max upload size: 50 MB per file.
  • Credits: ~1 per PDF page; HTML is 1 flat.
  • Check .firecrawl/ before re-parsing the same file.
  • To check your credit balance (recommended for batch processing and similar workflows), use firecrawl credit-usage (requires authentication).

See also

  • [firecrawl-scrape](../firecrawl-scrape/SKILL.md) — same idea for URLs
  • firecrawl-build-scrape — building document extraction into an app instead of running it here