@mastra/browser-viewer 0.1.0-alpha.0 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @mastra/browser-viewer
2
2
 
3
+ ## 0.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Initial release of @mastra/browser-viewer ([#15415](https://github.com/mastra-ai/mastra/pull/15415))
8
+
9
+ Playwright-based browser viewer for CLI providers that enables screencast visualization in Studio. Supports thread-isolated browser sessions and automatic CDP connection management.
10
+
11
+ ```typescript
12
+ import { BrowserViewer } from '@mastra/browser-viewer';
13
+
14
+ const workspace = new Workspace({
15
+ sandbox: new LocalSandbox({ cwd: './workspace' }),
16
+ browser: new BrowserViewer({
17
+ cli: 'agent-browser',
18
+ headless: false,
19
+ }),
20
+ });
21
+ ```
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [[`f112db1`](https://github.com/mastra-ai/mastra/commit/f112db179557ae9b5a0f1d25dc47f928d7d61cd9), [`21d9706`](https://github.com/mastra-ai/mastra/commit/21d970604d89eee970cbf8013d26d7551aff6ea5), [`0a0aa94`](https://github.com/mastra-ai/mastra/commit/0a0aa94729592e99885af2efb90c56aaada62247), [`ed07df3`](https://github.com/mastra-ai/mastra/commit/ed07df32a9d539c8261e892fc1bade783f5b41a6), [`01a7d51`](https://github.com/mastra-ai/mastra/commit/01a7d513493d21562f677f98550f7ceb165ba78c)]:
26
+ - @mastra/core@1.27.0
27
+
3
28
  ## 0.1.0-alpha.0
4
29
 
5
30
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/browser-viewer",
3
- "version": "0.1.0-alpha.0",
3
+ "version": "0.1.0",
4
4
  "description": "Playwright-based browser viewer for Mastra CLI providers",
5
5
  "type": "module",
6
6
  "files": [
@@ -36,9 +36,9 @@
36
36
  "typescript": "^5.9.3",
37
37
  "vitest": "4.1.4",
38
38
  "zod": "^4.3.6",
39
- "@internal/types-builder": "0.0.59",
40
- "@internal/lint": "0.0.84",
41
- "@mastra/core": "1.27.0-alpha.1"
39
+ "@internal/lint": "0.0.85",
40
+ "@mastra/core": "1.27.0",
41
+ "@internal/types-builder": "0.0.60"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "@mastra/core": ">=1.26.0-0 <2.0.0-0",