diff --git a/README.md b/README.md index 5cb8517..88ad4ba 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.6 init -y --browser +npx -y firecrawl-cli@1.14.7 init -y --browser ``` - `-y` runs setup non-interactively @@ -583,7 +583,7 @@ firecrawl --status ``` ``` - 🔥 firecrawl cli v1.14.6 + 🔥 firecrawl cli v1.14.7 ● Authenticated via stored credentials Concurrency: 0/100 jobs (parallel scrape limit) diff --git a/package.json b/package.json index 30dc013..28f0e6a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "firecrawl-cli", - "version": "1.14.6", + "version": "1.14.7", "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 58f63f2..e9ecd09 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.6 -y +npx -y firecrawl-cli@1.14.7 -y ``` 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.6 +npm install -g firecrawl-cli@1.14.7 ``` ## 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.6 --version` -3. Reinstall: `npm install -g firecrawl-cli@1.14.6` +2. Try: `npx firecrawl-cli@1.14.7 --version` +3. Reinstall: `npm install -g firecrawl-cli@1.14.7` diff --git a/skills/firecrawl-cli/rules/security.md b/skills/firecrawl-cli/rules/security.md index e805df9..8580088 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.6 +npm install -g firecrawl-cli@1.14.7 ``` diff --git a/src/commands/init.ts b/src/commands/init.ts index 776a7c2..0f87ec1 100644 --- a/src/commands/init.ts +++ b/src/commands/init.ts @@ -98,18 +98,31 @@ export const TEMPLATES: TemplateEntry[] = [ }, ]; +/** Human-friendly labels for skill repos, shown during install. */ +const SKILL_REPO_LABELS: Record = { + 'firecrawl/cli': 'core firecrawl skills', + 'firecrawl/skills': 'skills to build with firecrawl', +}; + +function skillRepoLabel(repo: string): string { + return SKILL_REPO_LABELS[repo] ?? repo; +} + /** * Install one skill repo quietly. Captures `npx skills add` output instead of * inheriting it, so users see a single line per repo. Returns the number of * skills installed (parsed from the captured stdout), or null if unknown. * - * In a TTY, shows a transient "↓ " line that gets overwritten by - * "✓ (N skills)" on success. In a non-TTY, prints only the final line. + * In a TTY, shows a transient "↓ Installing