https://github.com/notpeter/firecrawl-zed
https://github.com/notpeter/firecrawl-zed
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/notpeter/firecrawl-zed
- Owner: notpeter
- Created: 2024-10-29T00:04:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-29T00:40:27.000Z (over 1 year ago)
- Last Synced: 2025-10-18T08:53:32.502Z (8 months ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FireCrawl Zed Extension
Simple Zed Extension that adds an `/firecrawl` slash command.
For when `/fetch url` isn't enough.
## Usage
Open the Assistant (`cmd-r`):
```
/firecrawl
```
That's it.
## Setup
1. Generate a [FireCrawl API key](https://www.firecrawl.dev/app/api-keys)
2. Add it to your environment:
```
export FIRECRAWL_API_KEY="fc-1234567890123456789023456789"
```
3. (Optional) Add the above line to your `~/.zshrc` or `~/.bash_profile`
4. Quit Zed.
5. Launch Zed from the CLI:
```
# Make sure you've set it correctly
echo $FIRECRAWL_API_KEY
zed
```
6. Clone this repo somewhere:
```
mkdir -p ~/source/ && cd ~/source
git clone https://github.com/notpeter/firecrawl-zed
```
6. Install the extension: `cmd-shift-x` or `ctrl-shift-x` in Zed, then click "Install Dev Extension" and select `~/source/firecrawl-zed` or wherever you cloned the repo.
See [Usage](#usage) above.
## Screenshots

## Links
See also:
- [Zed Assistant: Slash Commands](https://zed.dev/docs/assistant/commands)
- [Zed Extensions: Slash Commands](https://zed.dev/docs/extensions/slash-commands)
- [Slash Commands Example Extension](https://github.com/zed-industries/zed/tree/main/extensions/slash-commands-example)
- [RFC Zed Extension](https://github.com/notpeter/rfc-zed)