Scalable object storage for any workload
Store and retrieve files, backups, and data assets through AWS S3 — credentials never touch your agent code.
Use AWS S3 through Keystore with zero code changes. Keys are resolved from the vault and injected at request time.
import Keystore from "@keystore/sdk";
const ks = new Keystore({ agentToken: process.env.KS_TOKEN! });
ks.interceptAll();
// S3 requests are automatically intercepted
const res = await fetch(
"https://s3.amazonaws.com/my-bucket/file.json"
);
const data = await res.json();
console.log(data);Get started in minutes. Your credentials are encrypted and never exposed to your agent code.
Get Started