@@ -11,7 +11,7 @@ npm install -g firecrawl-cli
1111Or set up everything in one command (install CLI globally, authenticate, and add skills across all detected coding editors):
1212
1313``` bash
14- npx -y firecrawl-cli@1.14.8 init -y --browser
14+ npx -y firecrawl-cli@1.16.2 init -y --browser
1515```
1616
1717- ` -y ` runs setup non-interactively
@@ -153,6 +153,11 @@ firecrawl scrape https://firecrawl.dev https://firecrawl.dev/blog https://docs.f
153153| ` --exclude-tags <tags> ` | Exclude specific HTML tags |
154154| ` --max-age <milliseconds> ` | Maximum age of cached content in milliseconds |
155155| ` --lockdown ` | Enable lockdown mode for the scrape |
156+ | ` --schema <json> ` | JSON schema for structured extraction |
157+ | ` --schema-file <path> ` | Path to JSON schema file for structured extraction |
158+ | ` --actions <json> ` | JSON actions array to run during scrape |
159+ | ` --actions-file <path> ` | Path to JSON actions file |
160+ | ` --proxy <proxy> ` | Proxy mode for scraping (for example, ` auto ` , ` basic ` ) |
156161| ` -o, --output <path> ` | Save output to file |
157162| ` --json ` | Output as JSON format |
158163| ` --pretty ` | Pretty print JSON output |
@@ -353,23 +358,27 @@ firecrawl crawl https://example.com --limit 100 --max-depth 3
353358
354359#### Crawl Options
355360
356- | Option | Description |
357- | --------------------------- | ---------------------------------------- |
358- | ` --wait ` | Wait for crawl to complete |
359- | ` --progress ` | Show progress while waiting |
360- | ` --limit <n> ` | Maximum pages to crawl |
361- | ` --max-depth <n> ` | Maximum crawl depth |
362- | ` --include-paths <paths> ` | Only crawl matching paths |
363- | ` --exclude-paths <paths> ` | Skip matching paths |
364- | ` --sitemap <mode> ` | ` include ` , ` skip ` , or ` only ` |
365- | ` --allow-subdomains ` | Include subdomains |
366- | ` --allow-external-links ` | Follow external links |
367- | ` --crawl-entire-domain ` | Crawl entire domain |
368- | ` --ignore-query-parameters ` | Treat URLs with different params as same |
369- | ` --delay <ms> ` | Delay between requests |
370- | ` --max-concurrency <n> ` | Max concurrent requests |
371- | ` --timeout <seconds> ` | Timeout when waiting |
372- | ` --poll-interval <seconds> ` | Status check interval |
361+ | Option | Description |
362+ | ------------------------------ | ---------------------------------------- |
363+ | ` --wait ` | Wait for crawl to complete |
364+ | ` --progress ` | Show progress while waiting |
365+ | ` --limit <n> ` | Maximum pages to crawl |
366+ | ` --max-depth <n> ` | Maximum crawl depth |
367+ | ` --include-paths <paths> ` | Only crawl matching paths |
368+ | ` --exclude-paths <paths> ` | Skip matching paths |
369+ | ` --sitemap <mode> ` | ` include ` , ` skip ` , or ` only ` |
370+ | ` --allow-subdomains ` | Include subdomains |
371+ | ` --allow-external-links ` | Follow external links |
372+ | ` --crawl-entire-domain ` | Crawl entire domain |
373+ | ` --ignore-query-parameters ` | Treat URLs with different params as same |
374+ | ` --delay <ms> ` | Delay between requests |
375+ | ` --max-concurrency <n> ` | Max concurrent requests |
376+ | ` --scrape-options <json> ` | JSON scrape options passed to each page |
377+ | ` --scrape-options-file <path> ` | Path to scrape options JSON file |
378+ | ` --webhook <url-or-json> ` | Webhook URL or configuration |
379+ | ` --cancel ` | Cancel an active crawl job by job ID |
380+ | ` --timeout <seconds> ` | Timeout when waiting |
381+ | ` --poll-interval <seconds> ` | Status check interval |
373382
374383#### Examples
375384
@@ -440,7 +449,9 @@ firecrawl agent <job-id> --wait
440449| ` --schema <json> ` | JSON schema for structured output (inline JSON string) |
441450| ` --schema-file <path> ` | Path to JSON schema file for structured output |
442451| ` --max-credits <number> ` | Maximum credits to spend (job fails if exceeded) |
452+ | ` --webhook <url-or-json> ` | Webhook URL or configuration |
443453| ` --status ` | Check status of existing agent job |
454+ | ` --cancel ` | Cancel an active agent job by job ID |
444455| ` --wait ` | Wait for agent to complete before returning results |
445456| ` --poll-interval <seconds> ` | Polling interval in seconds when waiting (default: 5) |
446457| ` --timeout <seconds> ` | Timeout in seconds when waiting (default: no timeout) |
@@ -580,7 +591,7 @@ firecrawl --status
580591```
581592
582593```
583- 🔥 firecrawl cli v1.14.8
594+ 🔥 firecrawl cli v1.16.2
584595
585596 ● Authenticated via stored credentials
586597 Concurrency: 0/100 jobs (parallel scrape limit)
0 commit comments