@mastra/files-sdk 0.0.0-feat-playground-ui-input-button-groups-20260529070627
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/CHANGELOG.md +58 -0
- package/LICENSE.md +30 -0
- package/README.md +107 -0
- package/dist/filesystem/index.d.ts +81 -0
- package/dist/filesystem/index.d.ts.map +1 -0
- package/dist/index.cjs +427 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +424 -0
- package/dist/index.js.map +1 -0
- package/dist/provider.d.ts +16 -0
- package/dist/provider.d.ts.map +1 -0
- package/package.json +64 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# @mastra/files-sdk
|
|
2
|
+
|
|
3
|
+
## 0.0.0-feat-playground-ui-input-button-groups-20260529070627
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`d779de3`](https://github.com/mastra-ai/mastra/commit/d779de3cd9d2e7ed8110547190e2f15e786a0e41), [`1750c97`](https://github.com/mastra-ai/mastra/commit/1750c975d6179fbf6db2813b15229d4f8f23fc55), [`0f0d1ba`](https://github.com/mastra-ai/mastra/commit/0f0d1ba67bfcb2204e571401662f1eceefc03357), [`0e32507`](https://github.com/mastra-ai/mastra/commit/0e32507962cdfa5569b7bda5bc6fb3dd34e40b03), [`07c3de7`](https://github.com/mastra-ai/mastra/commit/07c3de7f7bc418beccaea3b5e6b7f7cdda79d492), [`50ceae2`](https://github.com/mastra-ai/mastra/commit/50ceae270878e2f8fb2b2c6c2faab09df0007c8a), [`3a081c1`](https://github.com/mastra-ai/mastra/commit/3a081c1255c5ae8c99f6dad91cc612934ef6f2bd), [`49f8abc`](https://github.com/mastra-ai/mastra/commit/49f8abce8258e4f2f87bd326acfbdb641264a47c), [`fe9eacd`](https://github.com/mastra-ai/mastra/commit/fe9eacd9545a0a9d64aad31c9fa90294a425289e), [`db79c86`](https://github.com/mastra-ai/mastra/commit/db79c86c60723d57e02f9636ca2611bd4515f194)]:
|
|
8
|
+
- @mastra/core@0.0.0-feat-playground-ui-input-button-groups-20260529070627
|
|
9
|
+
|
|
10
|
+
## 0.2.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- Added @mastra/files-sdk workspace filesystem provider — a unified storage adapter backed by [FilesSDK](https://files-sdk.dev). Supports any FilesSDK adapter (S3, R2, GCS, Azure Blob, Vercel Blob, local filesystem, and more) through a single `FilesSDKFilesystem` class that implements the `WorkspaceFilesystem` interface. ([#17027](https://github.com/mastra-ai/mastra/pull/17027))
|
|
15
|
+
|
|
16
|
+
**Usage**
|
|
17
|
+
|
|
18
|
+
```ts
|
|
19
|
+
import { Files } from 'files-sdk';
|
|
20
|
+
import { s3 } from 'files-sdk/s3';
|
|
21
|
+
import { FilesSDKFilesystem } from '@mastra/files-sdk';
|
|
22
|
+
|
|
23
|
+
const files = new Files({ adapter: s3({ bucket: 'my-bucket', region: 'us-east-1' }) });
|
|
24
|
+
|
|
25
|
+
const filesystem = new FilesSDKFilesystem({ files });
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Swap adapters without changing code — just replace `s3()` with `r2()`, `gcs()`, `azure()`, `fs()`, etc.
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- Updated dependencies [[`cfa2e3a`](https://github.com/mastra-ai/mastra/commit/cfa2e3a5292322f48bb28b4d257d631da7f9d3cc), [`0cbece9`](https://github.com/mastra-ai/mastra/commit/0cbece9d832cb134a74cdbf3682d390a058215a4), [`2f5f58a`](https://github.com/mastra-ai/mastra/commit/2f5f58a9a8bb13bcdc6789db221eef7c9bf1ff02), [`7dfe1bc`](https://github.com/mastra-ai/mastra/commit/7dfe1bcfe71d261a6fd6bbf29b1dec49d78fb98f), [`ac442a4`](https://github.com/mastra-ai/mastra/commit/ac442a42fda0354ac2bcea772bf6691cb3e9dbb3), [`b7286f4`](https://github.com/mastra-ai/mastra/commit/b7286f4308267f5fd70e6bfee10dba9472640906), [`6096445`](https://github.com/mastra-ai/mastra/commit/60964459733f0ab384584d95e19c36607ffdf7b0), [`d72dc4b`](https://github.com/mastra-ai/mastra/commit/d72dc4b12d832546c05c20255fa96fe4eb515900), [`a481027`](https://github.com/mastra-ai/mastra/commit/a481027b549ba1018414990c8f045eaee7b9f413), [`1e5c067`](https://github.com/mastra-ai/mastra/commit/1e5c067d2e20a781af670578180d1ee249806d41), [`168fa09`](https://github.com/mastra-ai/mastra/commit/168fa09d6b39114cb8c13bd06f1dccb9bc81c6cd), [`df1947a`](https://github.com/mastra-ai/mastra/commit/df1947affa40f742067542251fac7ca759492ef4), [`ee59b74`](https://github.com/mastra-ai/mastra/commit/ee59b743ce73ad11784b4d9c6fbba8568edee1c8), [`a97b1a0`](https://github.com/mastra-ai/mastra/commit/a97b1a0abaed83946c3519d1e0f680d0815b8a67), [`008baaf`](https://github.com/mastra-ai/mastra/commit/008baafd8d851f831407045aebead5a2e3342eff), [`801baa0`](https://github.com/mastra-ai/mastra/commit/801baa07cccdbaec1d00942a92bdc831111744a2), [`8116436`](https://github.com/mastra-ai/mastra/commit/81164363eb225d774e41ff27da6a5ea611406688), [`c35b962`](https://github.com/mastra-ai/mastra/commit/c35b9625c7e854fcfdeee226a3338a750d0ff211), [`c27c4b9`](https://github.com/mastra-ai/mastra/commit/c27c4b9f137df5414fca4e45896aceccff6b0ed5), [`08b3b59`](https://github.com/mastra-ai/mastra/commit/08b3b590dd960dee6c9a6e39272f8927d803db6e), [`b3c3b18`](https://github.com/mastra-ai/mastra/commit/b3c3b189121489a3a51a8fd8204b569be9a89fe5), [`4084113`](https://github.com/mastra-ai/mastra/commit/408411370fc48a822e8b616b3b63f9409774e0e9), [`70cb714`](https://github.com/mastra-ai/mastra/commit/70cb7149c8f16f478e15b58498254a53181750a4), [`91cf0e0`](https://github.com/mastra-ai/mastra/commit/91cf0e027e511b871481a8576b56b7af83b15afd), [`7f9da22`](https://github.com/mastra-ai/mastra/commit/7f9da22efd5aa595e138a31de55a5f0f2f28b33d)]:
|
|
33
|
+
- @mastra/core@1.37.0
|
|
34
|
+
|
|
35
|
+
## 0.2.0-alpha.0
|
|
36
|
+
|
|
37
|
+
### Minor Changes
|
|
38
|
+
|
|
39
|
+
- Added @mastra/files-sdk workspace filesystem provider — a unified storage adapter backed by [FilesSDK](https://files-sdk.dev). Supports any FilesSDK adapter (S3, R2, GCS, Azure Blob, Vercel Blob, local filesystem, and more) through a single `FilesSDKFilesystem` class that implements the `WorkspaceFilesystem` interface. ([#17027](https://github.com/mastra-ai/mastra/pull/17027))
|
|
40
|
+
|
|
41
|
+
**Usage**
|
|
42
|
+
|
|
43
|
+
```ts
|
|
44
|
+
import { Files } from 'files-sdk';
|
|
45
|
+
import { s3 } from 'files-sdk/s3';
|
|
46
|
+
import { FilesSDKFilesystem } from '@mastra/files-sdk';
|
|
47
|
+
|
|
48
|
+
const files = new Files({ adapter: s3({ bucket: 'my-bucket', region: 'us-east-1' }) });
|
|
49
|
+
|
|
50
|
+
const filesystem = new FilesSDKFilesystem({ files });
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Swap adapters without changing code — just replace `s3()` with `r2()`, `gcs()`, `azure()`, `fs()`, etc.
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- Updated dependencies [[`c35b962`](https://github.com/mastra-ai/mastra/commit/c35b9625c7e854fcfdeee226a3338a750d0ff211), [`4084113`](https://github.com/mastra-ai/mastra/commit/408411370fc48a822e8b616b3b63f9409774e0e9)]:
|
|
58
|
+
- @mastra/core@1.37.0-alpha.8
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Portions of this software are licensed as follows:
|
|
2
|
+
|
|
3
|
+
- All content that resides under any directory named "ee/" within this
|
|
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`.
|
|
8
|
+
|
|
9
|
+
- All third-party components incorporated into the Mastra Software are
|
|
10
|
+
licensed under the original license provided by the owner of the
|
|
11
|
+
applicable component.
|
|
12
|
+
|
|
13
|
+
- Content outside of the above-mentioned directories or restrictions is
|
|
14
|
+
available under the "Apache License 2.0" as defined below.
|
|
15
|
+
|
|
16
|
+
# Apache License 2.0
|
|
17
|
+
|
|
18
|
+
Copyright (c) 2025 Kepler Software, Inc.
|
|
19
|
+
|
|
20
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
21
|
+
you may not use this file except in compliance with the License.
|
|
22
|
+
You may obtain a copy of the License at
|
|
23
|
+
|
|
24
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
25
|
+
|
|
26
|
+
Unless required by applicable law or agreed to in writing, software
|
|
27
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
28
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
29
|
+
See the License for the specific language governing permissions and
|
|
30
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
# @mastra/files-sdk
|
|
2
|
+
|
|
3
|
+
Unified storage filesystem provider for Mastra workspaces, powered by [FilesSDK](https://files-sdk.dev). Works with any FilesSDK adapter — S3, Cloudflare R2, Google Cloud Storage, Azure Blob, Vercel Blob, local filesystem, and more.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @mastra/files-sdk files-sdk
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Then install the FilesSDK adapter for your storage backend:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# AWS S3 / R2 / MinIO / DigitalOcean Spaces
|
|
15
|
+
npm install @aws-sdk/client-s3 @aws-sdk/s3-presigned-post @aws-sdk/s3-request-presigner
|
|
16
|
+
|
|
17
|
+
# Google Cloud Storage
|
|
18
|
+
npm install @google-cloud/storage google-auth-library
|
|
19
|
+
|
|
20
|
+
# Azure Blob Storage
|
|
21
|
+
npm install @azure/storage-blob @azure/core-auth @azure/identity
|
|
22
|
+
|
|
23
|
+
# Vercel Blob
|
|
24
|
+
npm install @vercel/blob
|
|
25
|
+
|
|
26
|
+
# Local filesystem (dev/test)
|
|
27
|
+
# No extra dependencies needed
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Usage
|
|
31
|
+
|
|
32
|
+
```typescript
|
|
33
|
+
import { Agent } from '@mastra/core/agent';
|
|
34
|
+
import { Workspace } from '@mastra/core/workspace';
|
|
35
|
+
import { FilesSDKFilesystem } from '@mastra/files-sdk';
|
|
36
|
+
import { Files } from 'files-sdk';
|
|
37
|
+
import { s3 } from 'files-sdk/s3';
|
|
38
|
+
|
|
39
|
+
const files = new Files({
|
|
40
|
+
adapter: s3({
|
|
41
|
+
bucket: 'my-bucket',
|
|
42
|
+
region: 'us-east-1',
|
|
43
|
+
}),
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
const workspace = new Workspace({
|
|
47
|
+
filesystem: new FilesSDKFilesystem({ files }),
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
const agent = new Agent({
|
|
51
|
+
name: 'my-agent',
|
|
52
|
+
model: 'anthropic/claude-opus-4-5',
|
|
53
|
+
workspace,
|
|
54
|
+
});
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Switching adapters
|
|
58
|
+
|
|
59
|
+
The power of FilesSDK is that you can swap storage backends by changing only the adapter import:
|
|
60
|
+
|
|
61
|
+
```typescript
|
|
62
|
+
import { Files } from 'files-sdk';
|
|
63
|
+
import { r2 } from 'files-sdk/r2';
|
|
64
|
+
|
|
65
|
+
const files = new Files({
|
|
66
|
+
adapter: r2({
|
|
67
|
+
accountId: process.env.R2_ACCOUNT_ID!,
|
|
68
|
+
accessKeyId: process.env.R2_ACCESS_KEY_ID!,
|
|
69
|
+
secretAccessKey: process.env.R2_SECRET_ACCESS_KEY!,
|
|
70
|
+
bucket: 'my-bucket',
|
|
71
|
+
}),
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
const workspace = new Workspace({
|
|
75
|
+
filesystem: new FilesSDKFilesystem({ files }),
|
|
76
|
+
});
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### Local filesystem for development
|
|
80
|
+
|
|
81
|
+
```typescript
|
|
82
|
+
import { Files } from 'files-sdk';
|
|
83
|
+
import { fs } from 'files-sdk/fs';
|
|
84
|
+
|
|
85
|
+
const files = new Files({
|
|
86
|
+
adapter: fs({ root: './.uploads' }),
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
const workspace = new Workspace({
|
|
90
|
+
filesystem: new FilesSDKFilesystem({ files }),
|
|
91
|
+
});
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Options
|
|
95
|
+
|
|
96
|
+
| Option | Type | Required | Description |
|
|
97
|
+
| ------------- | --------- | -------- | ------------------------------------- |
|
|
98
|
+
| `files` | `Files` | Yes | Pre-configured FilesSDK instance |
|
|
99
|
+
| `id` | `string` | No | Unique filesystem ID (auto-generated) |
|
|
100
|
+
| `displayName` | `string` | No | Human-friendly name for UI |
|
|
101
|
+
| `icon` | `string` | No | Icon identifier |
|
|
102
|
+
| `description` | `string` | No | Description for UI |
|
|
103
|
+
| `readOnly` | `boolean` | No | Mount as read-only |
|
|
104
|
+
|
|
105
|
+
## License
|
|
106
|
+
|
|
107
|
+
Apache-2.0
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import type { FileContent, FileStat, FileEntry, ReadOptions, WriteOptions, ListOptions, RemoveOptions, CopyOptions, FilesystemIcon, FilesystemInfo, ProviderStatus, MastraFilesystemOptions } from '@mastra/core/workspace';
|
|
2
|
+
import { MastraFilesystem } from '@mastra/core/workspace';
|
|
3
|
+
import type { Files } from 'files-sdk';
|
|
4
|
+
export interface FilesSDKFilesystemOptions extends MastraFilesystemOptions {
|
|
5
|
+
/** Pre-configured FilesSDK `Files` instance. */
|
|
6
|
+
files: Files;
|
|
7
|
+
/** Unique filesystem ID (auto-generated if not provided). */
|
|
8
|
+
id?: string;
|
|
9
|
+
/** Human-friendly display name for UI. */
|
|
10
|
+
displayName?: string;
|
|
11
|
+
/** Icon identifier for UI. */
|
|
12
|
+
icon?: FilesystemIcon;
|
|
13
|
+
/** Description shown in UI / instructions. */
|
|
14
|
+
description?: string;
|
|
15
|
+
/** Mount as read-only — all write operations will throw. */
|
|
16
|
+
readOnly?: boolean;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Workspace filesystem adapter backed by [FilesSDK](https://files-sdk.dev).
|
|
20
|
+
*
|
|
21
|
+
* Accepts a pre-configured `Files` instance so users choose their own adapter
|
|
22
|
+
* (S3, R2, GCS, Azure, local fs, etc.) and this class bridges it to the
|
|
23
|
+
* Mastra `WorkspaceFilesystem` interface.
|
|
24
|
+
*
|
|
25
|
+
* Object-storage semantics are bridged to the POSIX-like interface:
|
|
26
|
+
* - `mkdir` is a no-op (directories don't exist in object storage)
|
|
27
|
+
* - `readdir` uses `list()` with prefix filtering to synthesize directory entries
|
|
28
|
+
* - `rmdir` lists all keys under a prefix and batch-deletes them
|
|
29
|
+
*/
|
|
30
|
+
export declare class FilesSDKFilesystem extends MastraFilesystem {
|
|
31
|
+
readonly id: string;
|
|
32
|
+
readonly name = "FilesSDKFilesystem";
|
|
33
|
+
readonly provider = "files-sdk";
|
|
34
|
+
status: ProviderStatus;
|
|
35
|
+
readonly readOnly?: boolean;
|
|
36
|
+
readonly icon?: FilesystemIcon;
|
|
37
|
+
readonly displayName?: string;
|
|
38
|
+
readonly description?: string;
|
|
39
|
+
private readonly _files;
|
|
40
|
+
constructor(options: FilesSDKFilesystemOptions);
|
|
41
|
+
/** The underlying FilesSDK instance, for escape-hatch access. */
|
|
42
|
+
get files(): Files;
|
|
43
|
+
init(): Promise<void>;
|
|
44
|
+
getInfo(): FilesystemInfo;
|
|
45
|
+
getInstructions(): string;
|
|
46
|
+
readFile(path: string, options?: ReadOptions): Promise<string | Buffer>;
|
|
47
|
+
writeFile(path: string, content: FileContent, options?: WriteOptions): Promise<void>;
|
|
48
|
+
/**
|
|
49
|
+
* Append content to a file.
|
|
50
|
+
*
|
|
51
|
+
* **Not atomic.** Object storage has no native append, so this is implemented
|
|
52
|
+
* as a read-modify-write: the existing object is downloaded, the new content
|
|
53
|
+
* is concatenated, and the result is uploaded as a new object. Concurrent
|
|
54
|
+
* appends to the same key may overwrite each other. This limitation is
|
|
55
|
+
* inherent to object storage, not specific to FilesSDK, and matches the
|
|
56
|
+
* behavior of the sibling S3, GCS, and Azure workspace providers.
|
|
57
|
+
*/
|
|
58
|
+
appendFile(path: string, content: FileContent): Promise<void>;
|
|
59
|
+
deleteFile(path: string, options?: RemoveOptions): Promise<void>;
|
|
60
|
+
copyFile(src: string, dest: string, options?: CopyOptions): Promise<void>;
|
|
61
|
+
moveFile(src: string, dest: string, options?: CopyOptions): Promise<void>;
|
|
62
|
+
mkdir(_path: string, _options?: {
|
|
63
|
+
recursive?: boolean;
|
|
64
|
+
}): Promise<void>;
|
|
65
|
+
rmdir(path: string, options?: RemoveOptions): Promise<void>;
|
|
66
|
+
readdir(path: string, options?: ListOptions): Promise<FileEntry[]>;
|
|
67
|
+
exists(path: string): Promise<boolean>;
|
|
68
|
+
stat(path: string): Promise<FileStat>;
|
|
69
|
+
private assertWritable;
|
|
70
|
+
/** Check if a key prefix has any children (i.e. acts like a directory). */
|
|
71
|
+
private isDirectory;
|
|
72
|
+
/**
|
|
73
|
+
* Check whether `key` refers to a real stored file (not an empty leftover
|
|
74
|
+
* directory). Uses prefix listing constrained to the exact key, which only
|
|
75
|
+
* matches actually-stored objects across all adapters.
|
|
76
|
+
*/
|
|
77
|
+
private isFile;
|
|
78
|
+
/** Convert a FilesSDK StoredFile to a Mastra FileStat. */
|
|
79
|
+
private storedFileToStat;
|
|
80
|
+
}
|
|
81
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/filesystem/index.ts"],"names":[],"mappings":"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"}
|