@meetopenbot/firecrawl 1.0.0
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 +27 -0
- package/dist/index.js +19919 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# openbot-plugin-firecrawl
|
|
2
|
+
|
|
3
|
+
Firecrawl agent plugin for OpenBot.
|
|
4
|
+
|
|
5
|
+
## What is included
|
|
6
|
+
|
|
7
|
+
- A plugin registry export (`plugin`) compatible with OpenBot
|
|
8
|
+
- `agent:invoke` handler that uses Firecrawl's autonomous agent API to gather data from the web.
|
|
9
|
+
|
|
10
|
+
## Local usage
|
|
11
|
+
|
|
12
|
+
1. Install dependencies:
|
|
13
|
+
|
|
14
|
+
`npm install`
|
|
15
|
+
|
|
16
|
+
2. Build:
|
|
17
|
+
|
|
18
|
+
`npm run build`
|
|
19
|
+
|
|
20
|
+
3. Load `dist/index.js` from your OpenBot plugin registry/runtime.
|
|
21
|
+
|
|
22
|
+
## Runtime config
|
|
23
|
+
|
|
24
|
+
Set an API key using one of the following:
|
|
25
|
+
|
|
26
|
+
- `FIRECRAWL_API_KEY` environment variable
|
|
27
|
+
- `apiKey` in plugin options
|