@mastra/mesa 0.2.1-alpha.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.
Files changed (2) hide show
  1. package/README.md +11 -9
  2. package/package.json +3 -3
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/mesa",
3
- "version": "0.2.1-alpha.0",
3
+ "version": "0.2.1-alpha.1",
4
4
  "description": "Mesa filesystem provider for Mastra workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -30,8 +30,8 @@
30
30
  "vitest": "4.1.10",
31
31
  "@internal/lint": "0.0.129",
32
32
  "@internal/types-builder": "0.0.104",
33
- "@mastra/core": "1.64.0-alpha.2",
34
- "@internal/workspace-test-utils": "0.0.73"
33
+ "@internal/workspace-test-utils": "0.0.73",
34
+ "@mastra/core": "1.64.0-alpha.7"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "@mastra/core": ">=1.4.0-0 <2.0.0-0"