From firecrawl
Bulk extracts content from an entire website or site section using firecrawl. Supports depth limits, path filtering, and concurrent crawling.
How this skill is triggered — by the user, by Claude, or both
Slash command
/firecrawl:firecrawl-crawlThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Bulk extract content from a website. Crawls pages following links up to a depth/limit.
Bulk extract content from a website. Crawls pages following links up to a depth/limit.
/docs/)# 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>
| Option | Description |
|---|---|
--wait | Wait for crawl to complete before returning |
--progress | Show progress while waiting |
--limit <n> | Max pages to crawl |
--max-depth <n> | Max link depth to follow |
--include-paths <paths> | Only crawl URLs matching these paths |
--exclude-paths <paths> | Skip URLs matching these paths |
--delay <ms> | Delay between requests |
--max-concurrency <n> | Max parallel crawl workers |
--pretty | Pretty print JSON output |
-o, --output <path> | Output file path |
--wait when you need the results immediately. Without it, crawl returns a job ID for async polling.--include-paths to scope the crawl — don't crawl an entire site when you only need one section.firecrawl credit-usage before large crawls.npx claudepluginhub firecrawl/firecrawl-claude-plugin --plugin firecrawlBulk extracts content from an entire website or site section using firecrawl. Supports depth limits, path filtering, and concurrent crawling.
Crawls websites or sections to extract all pages via async BFS. Step 4 of crw workflow – map first to estimate scope. Supports depth, limits, JS rendering, and multiple output formats.
Crawls websites and extracts content from multiple pages via the Tavily CLI. Supports depth/breadth control, path filtering, semantic instructions, and saving pages as local markdown files.