@mastra/mesa 0.2.1-alpha.0 → 0.2.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/README.md +11 -9
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# @mastra/mesa
|
|
2
2
|
|
|
3
|
-
Mesa
|
|
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/
|
|
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: '
|
|
28
|
+
model: 'anthropic/claude-opus-4-7',
|
|
29
29
|
workspace,
|
|
30
30
|
});
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
## Documentation
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
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
|
-
##
|
|
41
|
+
## Support
|
|
40
42
|
|
|
41
|
-
|
|
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
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Mesa filesystem provider for Mastra workspaces",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"tsdown": "0.22.9",
|
|
29
29
|
"typescript": "^7.0.2",
|
|
30
30
|
"vitest": "4.1.10",
|
|
31
|
-
"@internal/lint": "0.0.
|
|
32
|
-
"@
|
|
33
|
-
"@
|
|
34
|
-
"@internal/workspace-test-utils": "0.0.
|
|
31
|
+
"@internal/lint": "0.0.130",
|
|
32
|
+
"@mastra/core": "1.64.0",
|
|
33
|
+
"@internal/types-builder": "0.0.105",
|
|
34
|
+
"@internal/workspace-test-utils": "0.0.74"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@mastra/core": ">=1.4.0-0 <2.0.0-0"
|