@mastra/browser-firecrawl 0.2.2-alpha.0 → 0.2.2-alpha.1

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.
Files changed (2) hide show
  1. package/README.md +31 -0
  2. package/package.json +3 -3
package/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # @mastra/browser-firecrawl
2
+
3
+ Give Mastra agents remote browser automation with Firecrawl Browser Sandbox sessions, deterministic interaction tools, and self-hosted configuration.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @mastra/browser-firecrawl
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```typescript
14
+ import { FirecrawlBrowser } from '@mastra/browser-firecrawl';
15
+
16
+ const browser = new FirecrawlBrowser({
17
+ apiKey: process.env.FIRECRAWL_API_KEY!,
18
+ });
19
+ ```
20
+
21
+ ## Documentation
22
+
23
+ - [Firecrawl](https://mastra.ai/integrations/browsers/firecrawl)
24
+
25
+ ## Changelog
26
+
27
+ See the [package changelog](https://github.com/mastra-ai/mastra/blob/main/browser/firecrawl/CHANGELOG.md) for version history and release notes.
28
+
29
+ ## Support
30
+
31
+ We have an [open community Discord](https://discord.gg/mastra-ai). Come and say hello and let us know if you have any questions or need any help getting things running.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/browser-firecrawl",
3
- "version": "0.2.2-alpha.0",
3
+ "version": "0.2.2-alpha.1",
4
4
  "description": "Mastra browser automation using Firecrawl Browser Sandbox (hosted CDP + agent-browser tools)",
5
5
  "type": "module",
6
6
  "files": [
@@ -36,9 +36,9 @@
36
36
  "typescript": "^7.0.2",
37
37
  "vitest": "4.1.10",
38
38
  "@internal/lint": "0.0.129",
39
+ "@mastra/agent-browser": "0.5.2-alpha.1",
39
40
  "@internal/types-builder": "0.0.104",
40
- "@mastra/agent-browser": "0.5.2-alpha.0",
41
- "@mastra/core": "1.64.0-alpha.2"
41
+ "@mastra/core": "1.64.0-alpha.7"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "@mastra/agent-browser": ">=0.3.0 <1.0.0",