@mastra/editor 0.14.3-alpha.2 → 0.14.3-alpha.3

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 +34 -0
  2. package/package.json +9 -9
package/README.md ADDED
@@ -0,0 +1,34 @@
1
+ # @mastra/editor
2
+
3
+ The data and provider layer behind Mastra Studio editing experiences. It manages agents, prompts, scorers, MCP servers, workspaces, skills, and favorites across code and storage sources.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @mastra/editor
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ Pass the editor to your Mastra instance to enable Studio editing, versioning, prompt blocks, and agent code overrides.
14
+
15
+ ```typescript
16
+ import { Mastra } from '@mastra/core/mastra';
17
+ import { MastraEditor } from '@mastra/editor';
18
+
19
+ export const mastra = new Mastra({
20
+ editor: new MastraEditor(),
21
+ });
22
+ ```
23
+
24
+ ## Documentation
25
+
26
+ - [@mastra/editor documentation](https://mastra.ai/reference/editor/mastra-editor)
27
+
28
+ ## Changelog
29
+
30
+ See the [package changelog](https://github.com/mastra-ai/mastra/blob/main/packages/editor/CHANGELOG.md) for version history and release notes.
31
+
32
+ ## Support
33
+
34
+ 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/editor",
3
- "version": "0.14.3-alpha.2",
3
+ "version": "0.14.3-alpha.3",
4
4
  "description": "Mastra Editor for agent management and instantiation",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
@@ -74,8 +74,8 @@
74
74
  "@arcadeai/arcadejs": "^2.4.1",
75
75
  "@composio/core": "^0.14.0",
76
76
  "@composio/mastra": "^0.10.2",
77
- "@mastra/memory": "1.28.2-alpha.1",
78
- "@mastra/schema-compat": "1.3.8-alpha.0"
77
+ "@mastra/memory": "1.28.2-alpha.2",
78
+ "@mastra/schema-compat": "1.3.8-alpha.1"
79
79
  },
80
80
  "devDependencies": {
81
81
  "@hono/node-server": "^2.0.0",
@@ -85,13 +85,13 @@
85
85
  "typescript": "^7.0.2",
86
86
  "vitest": "4.1.10",
87
87
  "zod": "^3.25.76",
88
- "@internal/ai-sdk-v5": "0.0.76",
89
- "@internal/ai-v6": "0.0.76",
90
88
  "@internal/ai-sdk-v4": "0.0.76",
91
- "@mastra/core": "1.64.0-alpha.2",
92
- "@mastra/hono": "1.7.6-alpha.2",
93
- "@mastra/libsql": "1.22.3-alpha.0",
94
- "@mastra/mcp": "1.17.3-alpha.0"
89
+ "@internal/ai-v6": "0.0.76",
90
+ "@mastra/core": "1.64.0-alpha.7",
91
+ "@internal/ai-sdk-v5": "0.0.76",
92
+ "@mastra/hono": "1.7.6-alpha.7",
93
+ "@mastra/libsql": "1.22.3-alpha.3",
94
+ "@mastra/mcp": "1.17.3-alpha.2"
95
95
  },
96
96
  "peerDependencies": {
97
97
  "@mastra/core": ">=1.34.0-0 <2.0.0-0",