@mastra/mesa 0.2.0 → 0.2.1-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.
package/LICENSE.md CHANGED
@@ -1,10 +1,12 @@
1
1
  Portions of this software are licensed as follows:
2
2
 
3
- - All content that resides under any directory named "ee/" within this
3
+ - All content that resides under any directory named `ee/` within this
4
4
  repository, including but not limited to:
5
- - `packages/core/src/auth/ee/`
6
- - `packages/server/src/server/auth/ee/`
7
- is licensed under the license defined in `ee/LICENSE`.
5
+ - `@mastra/core/auth/ee`
6
+ - `@mastra/core/agent-builder/ee`
7
+ - `@mastra/editor/ee`
8
+
9
+ is licensed under the license defined in [`ee/LICENSE`](https://github.com/mastra-ai/mastra/blob/main/ee/LICENSE).
8
10
 
9
11
  - All third-party components incorporated into the Mastra Software are
10
12
  licensed under the original license provided by the owner of the
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # @mastra/mesa
2
2
 
3
- Mesa filesystem provider for Mastra workspaces.
3
+ Store versioned Mastra workspace files in Mesa repositories with standard file operations, commits, branches, diffs, history, and repository status.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install @mastra/core @mastra/mesa
8
+ npm install @mastra/mesa
9
9
  ```
10
10
 
11
11
  ## Usage
@@ -25,17 +25,19 @@ const workspace = new Workspace({
25
25
 
26
26
  const agent = new Agent({
27
27
  name: 'my-agent',
28
- model: '__GATEWAY_ANTHROPIC_MODEL_OPUS__',
28
+ model: 'anthropic/claude-opus-4-7',
29
29
  workspace,
30
30
  });
31
31
  ```
32
32
 
33
- Filesystem methods expect absolute paths rooted at the Mesa mount. Include the org slug and repo name:
33
+ ## Documentation
34
34
 
35
- ```typescript
36
- await workspace.filesystem.readFile('/acme/docs/README.md');
37
- ```
35
+ - [Mesa](https://mastra.ai/integrations/file-storage/mesa)
36
+
37
+ ## Changelog
38
+
39
+ See the [package changelog](https://github.com/mastra-ai/mastra/blob/main/workspaces/mesa/CHANGELOG.md) for version history and release notes.
38
40
 
39
- ## License
41
+ ## Support
40
42
 
41
- Apache-2.0
43
+ 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.