Skip to content

Commit 1b48a69

Browse files
swap interact example to action-oriented search + filter flow
1 parent 9d6cc65 commit 1b48a69

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 2 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.7 init -y --browser
14+
npx -y firecrawl-cli@1.14.8 init -y --browser
1515
```
1616

1717
- `-y` runs setup non-interactively
@@ -583,7 +583,7 @@ firecrawl --status
583583
```
584584

585585
```
586-
🔥 firecrawl cli v1.14.7
586+
🔥 firecrawl cli v1.14.8
587587
588588
● Authenticated via stored credentials
589589
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.14.7",
3+
"version": "1.14.8",
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.7 -y
15+
npx -y firecrawl-cli@1.14.8 -y
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.7
39+
npm install -g firecrawl-cli@1.14.8
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.7 --version`
82-
3. Reinstall: `npm install -g firecrawl-cli@1.14.7`
81+
2. Try: `npx firecrawl-cli@1.14.8 --version`
82+
3. Reinstall: `npm install -g firecrawl-cli@1.14.8`

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.7
25+
npm install -g firecrawl-cli@1.14.8
2626
```

src/commands/init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ function printNextSteps(skillCount: number | null): void {
210210
` ${arrow} ${bold}Search${reset} "Search for the latest stories in AI" ${dim}firecrawl search "latest stories in AI"${reset}`
211211
);
212212
console.log(
213-
` ${arrow} ${bold}Interact${reset} "Extract the pricing tiers as JSON" ${dim}firecrawl interact "extract pricing tiers as JSON"${reset}`
213+
` ${arrow} ${bold}Interact${reset} "Go to amazon.com, search keyboards, filter by Prime" ${dim}firecrawl interact "search keyboards, filter by Prime"${reset}`
214214
);
215215
console.log('');
216216
console.log(

0 commit comments

Comments
 (0)