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
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,24 @@ npx -y firecrawl-cli@latest init -y --browser

### Setup Skills, Workflows, and MCP

If you are using an AI coding agent like Claude Code, you can also install the skills manually:
If you are using an AI coding agent like Claude Code, you can also install skill groups manually — one command per family:

```bash
firecrawl setup skills
firecrawl setup workflows
firecrawl setup core # scrape/search/crawl/interact primitives + index skills ("skills" is an alias)
firecrawl setup build # app-integration skills for the Firecrawl API
firecrawl setup workflows # end-to-end recipes (lead gen, deep research, ...)
```

Or install a single skill by name — the `firecrawl-` prefix is optional:

```bash
firecrawl setup developer-index
firecrawl setup seo-audit
```

These install globally across all detected coding editors by default. Use `--agent <agent>` to scope either command to one editor.
If no API key is found afterwards, an interactive terminal offers a browser login (pass `--browser` to log in without the prompt); non-interactive runs never block — they print a hint and the skills walk agents through setup on first use.

These install globally across all detected coding editors by default. Use `--agent <agent>` to scope any of them to one editor.

#### Scope setup to a single harness

Expand Down Expand Up @@ -78,7 +88,8 @@ npx skills add firecrawl/skills
To reinstall skills manually:

```bash
firecrawl setup skills
firecrawl setup core
firecrawl setup build
firecrawl setup workflows
```

Expand Down
Loading
Loading