Skip to content

Commit f91f069

Browse files
rephrase build-skills tip with concrete example, drop em dash
1 parent 6ef1aa5 commit f91f069

5 files changed

Lines changed: 12 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.4 init -y --browser
14+
npx -y firecrawl-cli@1.14.5 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.4
586+
🔥 firecrawl cli v1.14.5
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.4",
3+
"version": "1.14.5",
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.4 -y
15+
npx -y firecrawl-cli@1.14.5 -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.4
39+
npm install -g firecrawl-cli@1.14.5
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.4 --version`
82-
3. Reinstall: `npm install -g firecrawl-cli@1.14.4`
81+
2. Try: `npx firecrawl-cli@1.14.5 --version`
82+
3. Reinstall: `npm install -g firecrawl-cli@1.14.5`

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

src/commands/init.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,10 @@ function printNextSteps(skillCount: number | null): void {
200200
);
201201
console.log('');
202202
console.log(
203-
` ${dim}In your AI agent, just ask to ${reset}${bold}"start building"${reset}${dim} — the build skills auto-load.${reset}`
203+
` ${dim}In your AI agent, just describe what you want to build or integrate.${reset}`
204+
);
205+
console.log(
206+
` ${dim}Example:${reset} ${bold}"Build a Next.js app that scrapes Hacker News"${reset}`
204207
);
205208
console.log('');
206209
}

0 commit comments

Comments
 (0)