Files and blobs your workflows can keep

Storing a file usually means standing up a bucket and handing out a key that works from anywhere. Here objects live in per-workspace storage, scoped to who you are — reachable from a workflow step, browsable from a console, with downloads that come straight from the store.

Per-workspace object and file storage, scoped by a key derived from your workspace, reachable from a workflow and browsable from a console.

What the object store gives you

Platform capabilities

Do I have to set up a bucket or an S3 key?

No. The storage runs as part of the platform, so there is nothing to provision, connect or hand a credential out for. You write objects under a workspace namespace and read them back the same way, and there is deliberately no separate key to leak — access always goes through the platform, which scopes it to your workspace.

Can another workspace read my objects?

No. Every object is addressed by a key derived from the workspace that stored it, and a request has no way to name a different workspace's location. The store answers only within your own prefix rather than quietly returning something else, so the boundary is enforced where the data lives.

Can a workflow store and read files on its own?

Yes. The store is available as an ordinary step you place on the canvas and as a tool an agent may call, so a workflow can keep a file between runs and read it back later. Both routes are scoped to the same workspace, so granting the capability does not widen what can be reached.

Try it on a real workflow