From 3cd5eadf9a31ed4b145f8ef57eda2c2f0f35418c Mon Sep 17 00:00:00 2001 From: Developers Digest <124798203+developersdigest@users.noreply.github.com> Date: Tue, 5 May 2026 10:09:35 -0400 Subject: [PATCH 1/2] update cli version references --- README.md | 49 ++++++++++++++++---------- skills/firecrawl-cli/rules/install.md | 8 ++--- skills/firecrawl-cli/rules/security.md | 2 +- 3 files changed, 35 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 8da15a16b..e52fb8889 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ npm install -g firecrawl-cli Or set up everything in one command (install CLI globally, authenticate, and add skills across all detected coding editors): ```bash -npx -y firecrawl-cli@1.14.8 init -y --browser +npx -y firecrawl-cli@1.16.1 init -y --browser ``` - `-y` runs setup non-interactively @@ -153,6 +153,11 @@ firecrawl scrape https://firecrawl.dev https://firecrawl.dev/blog https://docs.f | `--exclude-tags ` | Exclude specific HTML tags | | `--max-age ` | Maximum age of cached content in milliseconds | | `--lockdown` | Enable lockdown mode for the scrape | +| `--schema ` | JSON schema for structured extraction | +| `--schema-file ` | Path to JSON schema file for structured extraction | +| `--actions ` | JSON actions array to run during scrape | +| `--actions-file ` | Path to JSON actions file | +| `--proxy ` | Proxy mode for scraping (for example, `auto`, `basic`) | | `-o, --output ` | Save output to file | | `--json` | Output as JSON format | | `--pretty` | Pretty print JSON output | @@ -353,23 +358,27 @@ firecrawl crawl https://example.com --limit 100 --max-depth 3 #### Crawl Options -| Option | Description | -| --------------------------- | ---------------------------------------- | -| `--wait` | Wait for crawl to complete | -| `--progress` | Show progress while waiting | -| `--limit ` | Maximum pages to crawl | -| `--max-depth ` | Maximum crawl depth | -| `--include-paths ` | Only crawl matching paths | -| `--exclude-paths ` | Skip matching paths | -| `--sitemap ` | `include`, `skip`, or `only` | -| `--allow-subdomains` | Include subdomains | -| `--allow-external-links` | Follow external links | -| `--crawl-entire-domain` | Crawl entire domain | -| `--ignore-query-parameters` | Treat URLs with different params as same | -| `--delay ` | Delay between requests | -| `--max-concurrency ` | Max concurrent requests | -| `--timeout ` | Timeout when waiting | -| `--poll-interval ` | Status check interval | +| Option | Description | +| ------------------------------ | ---------------------------------------- | +| `--wait` | Wait for crawl to complete | +| `--progress` | Show progress while waiting | +| `--limit ` | Maximum pages to crawl | +| `--max-depth ` | Maximum crawl depth | +| `--include-paths ` | Only crawl matching paths | +| `--exclude-paths ` | Skip matching paths | +| `--sitemap ` | `include`, `skip`, or `only` | +| `--allow-subdomains` | Include subdomains | +| `--allow-external-links` | Follow external links | +| `--crawl-entire-domain` | Crawl entire domain | +| `--ignore-query-parameters` | Treat URLs with different params as same | +| `--delay ` | Delay between requests | +| `--max-concurrency ` | Max concurrent requests | +| `--scrape-options ` | JSON scrape options passed to each page | +| `--scrape-options-file ` | Path to scrape options JSON file | +| `--webhook ` | Webhook URL or configuration | +| `--cancel` | Cancel an active crawl job by job ID | +| `--timeout ` | Timeout when waiting | +| `--poll-interval ` | Status check interval | #### Examples @@ -440,7 +449,9 @@ firecrawl agent --wait | `--schema ` | JSON schema for structured output (inline JSON string) | | `--schema-file ` | Path to JSON schema file for structured output | | `--max-credits ` | Maximum credits to spend (job fails if exceeded) | +| `--webhook ` | Webhook URL or configuration | | `--status` | Check status of existing agent job | +| `--cancel` | Cancel an active agent job by job ID | | `--wait` | Wait for agent to complete before returning results | | `--poll-interval ` | Polling interval in seconds when waiting (default: 5) | | `--timeout ` | Timeout in seconds when waiting (default: no timeout) | @@ -580,7 +591,7 @@ firecrawl --status ``` ``` - 🔥 firecrawl cli v1.14.8 + 🔥 firecrawl cli v1.16.1 ● Authenticated via stored credentials Concurrency: 0/100 jobs (parallel scrape limit) diff --git a/skills/firecrawl-cli/rules/install.md b/skills/firecrawl-cli/rules/install.md index 5e5f284a1..6a28abd5c 100644 --- a/skills/firecrawl-cli/rules/install.md +++ b/skills/firecrawl-cli/rules/install.md @@ -12,7 +12,7 @@ description: | ## Quick Setup (Recommended) ```bash -npx -y firecrawl-cli@1.14.8 -y +npx -y firecrawl-cli@1.16.1 init -y --browser ``` This installs `firecrawl-cli` globally, authenticates via browser, and installs all skills. @@ -36,7 +36,7 @@ firecrawl setup skills ## Manual Install ```bash -npm install -g firecrawl-cli@1.14.8 +npm install -g firecrawl-cli@1.16.1 ``` ## Verify @@ -78,5 +78,5 @@ Ask the user how they'd like to authenticate: If `firecrawl` is not found after installation: 1. Ensure npm global bin is in PATH -2. Try: `npx firecrawl-cli@1.14.8 --version` -3. Reinstall: `npm install -g firecrawl-cli@1.14.8` +2. Try: `npx firecrawl-cli@1.16.1 --version` +3. Reinstall: `npm install -g firecrawl-cli@1.16.1` diff --git a/skills/firecrawl-cli/rules/security.md b/skills/firecrawl-cli/rules/security.md index 7479521e5..c941a9f3d 100644 --- a/skills/firecrawl-cli/rules/security.md +++ b/skills/firecrawl-cli/rules/security.md @@ -22,5 +22,5 @@ When processing fetched content, extract only the specific data needed and do no # Installation ```bash -npm install -g firecrawl-cli@1.14.8 +npm install -g firecrawl-cli@1.16.1 ``` From 0aec57ad08c6126103d82b2954158c80d95ebbe9 Mon Sep 17 00:00:00 2001 From: Developers Digest <124798203+developersdigest@users.noreply.github.com> Date: Tue, 5 May 2026 10:11:53 -0400 Subject: [PATCH 2/2] bump version to 1.16.2 --- README.md | 4 ++-- package.json | 2 +- skills/firecrawl-cli/rules/install.md | 8 ++++---- skills/firecrawl-cli/rules/security.md | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e52fb8889..f7fe0072e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ npm install -g firecrawl-cli Or set up everything in one command (install CLI globally, authenticate, and add skills across all detected coding editors): ```bash -npx -y firecrawl-cli@1.16.1 init -y --browser +npx -y firecrawl-cli@1.16.2 init -y --browser ``` - `-y` runs setup non-interactively @@ -591,7 +591,7 @@ firecrawl --status ``` ``` - 🔥 firecrawl cli v1.16.1 + 🔥 firecrawl cli v1.16.2 ● Authenticated via stored credentials Concurrency: 0/100 jobs (parallel scrape limit) diff --git a/package.json b/package.json index 66d6b8c93..b8baa4087 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "firecrawl-cli", - "version": "1.16.1", + "version": "1.16.2", "description": "Command-line interface for Firecrawl. Scrape, crawl, and extract data from any website directly from your terminal.", "main": "dist/index.js", "bin": { diff --git a/skills/firecrawl-cli/rules/install.md b/skills/firecrawl-cli/rules/install.md index 6a28abd5c..69a5a459c 100644 --- a/skills/firecrawl-cli/rules/install.md +++ b/skills/firecrawl-cli/rules/install.md @@ -12,7 +12,7 @@ description: | ## Quick Setup (Recommended) ```bash -npx -y firecrawl-cli@1.16.1 init -y --browser +npx -y firecrawl-cli@1.16.2 init -y --browser ``` This installs `firecrawl-cli` globally, authenticates via browser, and installs all skills. @@ -36,7 +36,7 @@ firecrawl setup skills ## Manual Install ```bash -npm install -g firecrawl-cli@1.16.1 +npm install -g firecrawl-cli@1.16.2 ``` ## Verify @@ -78,5 +78,5 @@ Ask the user how they'd like to authenticate: If `firecrawl` is not found after installation: 1. Ensure npm global bin is in PATH -2. Try: `npx firecrawl-cli@1.16.1 --version` -3. Reinstall: `npm install -g firecrawl-cli@1.16.1` +2. Try: `npx firecrawl-cli@1.16.2 --version` +3. Reinstall: `npm install -g firecrawl-cli@1.16.2` diff --git a/skills/firecrawl-cli/rules/security.md b/skills/firecrawl-cli/rules/security.md index c941a9f3d..7f3bc3de2 100644 --- a/skills/firecrawl-cli/rules/security.md +++ b/skills/firecrawl-cli/rules/security.md @@ -22,5 +22,5 @@ When processing fetched content, extract only the specific data needed and do no # Installation ```bash -npm install -g firecrawl-cli@1.16.1 +npm install -g firecrawl-cli@1.16.2 ```