From 850ab2ba913fa6022c2bfac49828c6b0e7b4952b Mon Sep 17 00:00:00 2001 From: "firecrawl-spring[bot]" <254786068+firecrawl-spring[bot]@users.noreply.github.com> Date: Wed, 11 Mar 2026 17:51:09 +0000 Subject: [PATCH 1/2] docs(readme): add Firecrawl Skill & CLI section to Quick Start --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/README.md b/README.md index a970ab0d0..a5da4d768 100644 --- a/README.md +++ b/README.md @@ -94,6 +94,41 @@ Response: } ``` +### Install the Firecrawl Skill & CLI + +The Firecrawl Skill is an easy way for AI agents such as [Claude Code](https://claude.ai/code), [Antigravity](https://antigravity.dev) and [OpenCode](https://opencode.ai) to use Firecrawl through the CLI. + +Install and configure the skill for all detected AI coding agents: +```bash +npx -y firecrawl-cli@latest init --all --browser +``` + +After installing, restart your agent for it to discover the new skill. + +You can also install the CLI globally: +```bash +npm install -g firecrawl-cli +``` + +Authenticate with your API key: +```bash +# Interactive login (opens browser) +firecrawl login --browser + +# Or login with API key directly +firecrawl login --api-key fc-YOUR_API_KEY + +# Or set via environment variable +export FIRECRAWL_API_KEY=fc-YOUR_API_KEY +``` + +Try a quick scrape: +```bash +firecrawl https://example.com --only-main-content +``` + +See the full [Skill + CLI documentation](https://docs.firecrawl.dev/sdks/cli) for all available commands including search, map, crawl, agent, and browser automation. + --- ## Feature Overview From 398db8c47376f117d91ab2186059f0e2598428ce Mon Sep 17 00:00:00 2001 From: "firecrawl-spring[bot]" <254786068+firecrawl-spring[bot]@users.noreply.github.com> Date: Wed, 11 Mar 2026 18:40:34 +0000 Subject: [PATCH 2/2] docs(readme): fix Antigravity hyperlink to antigravity.google --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a5da4d768..099077643 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Response: ### Install the Firecrawl Skill & CLI -The Firecrawl Skill is an easy way for AI agents such as [Claude Code](https://claude.ai/code), [Antigravity](https://antigravity.dev) and [OpenCode](https://opencode.ai) to use Firecrawl through the CLI. +The Firecrawl Skill is an easy way for AI agents such as [Claude Code](https://claude.ai/code), [Antigravity](https://antigravity.google) and [OpenCode](https://opencode.ai) to use Firecrawl through the CLI. Install and configure the skill for all detected AI coding agents: ```bash