Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3 init -y --browser
npx -y firecrawl-cli@1.14.6 init -y --browser
```

- `-y` runs setup non-interactively
Expand Down Expand Up @@ -583,7 +583,7 @@ firecrawl --status
```

```
🔥 firecrawl cli v1.14.3
🔥 firecrawl cli v1.14.6

● Authenticated via stored credentials
Concurrency: 0/100 jobs (parallel scrape limit)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firecrawl-cli",
"version": "1.14.3",
"version": "1.14.6",
"description": "Command-line interface for Firecrawl. Scrape, crawl, and extract data from any website directly from your terminal.",
"main": "dist/index.js",
"bin": {
Expand Down
8 changes: 4 additions & 4 deletions skills/firecrawl-cli/rules/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description: |
## Quick Setup (Recommended)

```bash
npx -y firecrawl-cli@1.14.3 -y
npx -y firecrawl-cli@1.14.6 -y
```

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

```bash
npm install -g firecrawl-cli@1.14.3
npm install -g firecrawl-cli@1.14.6
```

## Verify
Expand Down Expand Up @@ -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.3 --version`
3. Reinstall: `npm install -g firecrawl-cli@1.14.3`
2. Try: `npx firecrawl-cli@1.14.6 --version`
3. Reinstall: `npm install -g firecrawl-cli@1.14.6`
2 changes: 1 addition & 1 deletion skills/firecrawl-cli/rules/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3
npm install -g firecrawl-cli@1.14.6
```
7 changes: 7 additions & 0 deletions src/commands/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,13 @@ function printNextSteps(skillCount: number | null): void {
` ${arrow} ${dim}All commands:${reset} ${bold}firecrawl --help${reset}`
);
console.log('');
console.log(
` ${dim}In your AI agent, just describe what you want to build or integrate.${reset}`
);
console.log(
` ${dim}Example:${reset} ${bold}"I want to use firecrawl to build an onboarding flow for my insurance company"${reset}`
);
console.log('');
}

async function stepInstall(): Promise<boolean> {
Expand Down
Loading