@meetopenbot/firecrawl 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -2
- package/dist/index.js +88 -19810
- package/package.json +5 -7
package/README.md
CHANGED
|
@@ -5,11 +5,14 @@ Firecrawl agent plugin for OpenBot.
|
|
|
5
5
|
## What is included
|
|
6
6
|
|
|
7
7
|
- A plugin registry export (`plugin`) compatible with OpenBot
|
|
8
|
-
- `agent:invoke` handler that
|
|
8
|
+
- `agent:invoke` handler that calls Firecrawl's autonomous agent API to gather data from the web
|
|
9
|
+
- `client:ui:widget:response` handler that captures an API key from the UI and persists it via OpenBot storage
|
|
10
|
+
|
|
11
|
+
This plugin has **zero runtime dependencies** — it talks to Firecrawl directly via `fetch` (Node 18+).
|
|
9
12
|
|
|
10
13
|
## Local usage
|
|
11
14
|
|
|
12
|
-
1. Install dependencies:
|
|
15
|
+
1. Install dev dependencies:
|
|
13
16
|
|
|
14
17
|
`npm install`
|
|
15
18
|
|
|
@@ -25,3 +28,8 @@ Set an API key using one of the following:
|
|
|
25
28
|
|
|
26
29
|
- `FIRECRAWL_API_KEY` environment variable
|
|
27
30
|
- `apiKey` in plugin options
|
|
31
|
+
- Provide the key through the in-app API key form (auto-shown when missing)
|
|
32
|
+
|
|
33
|
+
Optional:
|
|
34
|
+
|
|
35
|
+
- `FIRECRAWL_API_URL` to override the API base URL (defaults to `https://api.firecrawl.dev`)
|