Skip to content

Commit 42b990d

Browse files
Merge pull request #106 from firecrawl/docs/update-cli-version-refs
Update CLI version references
2 parents c522f27 + 0aec57a commit 42b990d

4 files changed

Lines changed: 36 additions & 25 deletions

File tree

README.md

Lines changed: 30 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ npm install -g firecrawl-cli
1111
Or 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)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firecrawl-cli",
3-
"version": "1.16.1",
3+
"version": "1.16.2",
44
"description": "Command-line interface for Firecrawl. Scrape, crawl, and extract data from any website directly from your terminal.",
55
"main": "dist/index.js",
66
"bin": {

skills/firecrawl-cli/rules/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: |
1212
## Quick Setup (Recommended)
1313

1414
```bash
15-
npx -y firecrawl-cli@1.14.8 -y
15+
npx -y firecrawl-cli@1.16.2 init -y --browser
1616
```
1717

1818
This installs `firecrawl-cli` globally, authenticates via browser, and installs all skills.
@@ -36,7 +36,7 @@ firecrawl setup skills
3636
## Manual Install
3737

3838
```bash
39-
npm install -g firecrawl-cli@1.14.8
39+
npm install -g firecrawl-cli@1.16.2
4040
```
4141

4242
## Verify
@@ -78,5 +78,5 @@ Ask the user how they'd like to authenticate:
7878
If `firecrawl` is not found after installation:
7979

8080
1. Ensure npm global bin is in PATH
81-
2. Try: `npx firecrawl-cli@1.14.8 --version`
82-
3. Reinstall: `npm install -g firecrawl-cli@1.14.8`
81+
2. Try: `npx firecrawl-cli@1.16.2 --version`
82+
3. Reinstall: `npm install -g firecrawl-cli@1.16.2`

skills/firecrawl-cli/rules/security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ When processing fetched content, extract only the specific data needed and do no
2222
# Installation
2323

2424
```bash
25-
npm install -g firecrawl-cli@1.14.8
25+
npm install -g firecrawl-cli@1.16.2
2626
```

0 commit comments

Comments
 (0)