@mastra/archil 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 +33 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # @mastra/archil
2
+
3
+ Store Mastra workspace files on Archil elastic serverless disks with S3-compatible operations, POSIX shell access, snapshots, and persistent volumes.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @mastra/archil
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```typescript
14
+ import { ArchilFilesystem } from '@mastra/archil';
15
+
16
+ const filesystem = new ArchilFilesystem({
17
+ diskId: 'dsk-0123456789abcdef',
18
+ apiKey: process.env.ARCHIL_API_KEY!,
19
+ region: 'aws-us-east-1',
20
+ });
21
+ ```
22
+
23
+ ## Documentation
24
+
25
+ - [Archil](https://mastra.ai/integrations/file-storage/archil)
26
+
27
+ ## Changelog
28
+
29
+ See the [package changelog](https://github.com/mastra-ai/mastra/blob/main/workspaces/archil/CHANGELOG.md) for version history and release notes.
30
+
31
+ ## Support
32
+
33
+ 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/archil",
3
- "version": "0.2.1-alpha.0",
3
+ "version": "0.2.1-alpha.1",
4
4
  "description": "Archil filesystem provider for Mastra workspaces — elastic, serverless file systems for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -32,7 +32,7 @@
32
32
  "vitest": "4.1.10",
33
33
  "@internal/lint": "0.0.129",
34
34
  "@internal/types-builder": "0.0.104",
35
- "@mastra/core": "1.64.0-alpha.2"
35
+ "@mastra/core": "1.64.0-alpha.7"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "@mastra/core": ">=1.4.0-0 <2.0.0-0"