Guide · Agent · Interface · Admin · Models
The parts you don’t have to build.
Remy apps are just plain TypeScript. Three SDKs hand you the pieces you’d otherwise wire up yourself: a database, auth, files, the frontend client, the ops CLI. There’s a managed catalog of 349 AI models, callable from any of them, and the platform’s developer guide, mirrored straight from the repo.
example.ts
// backend · @mindstudio-ai/agent
const { imageUrl } = await mindstudio.generateImage({
prompt: "a courtyard at dusk",
});
await Assets.push({ url: imageUrl });
// frontend · @mindstudio-ai/interface
const api = createClient<App>();
const assets = await api.listAssets();
// ops · @madewithremy/admin
$ remy-admin releases wait --latestReference3 packages · 349 models · 17 guide chapters · 56 sections · 825 entries
Guide
17 chapters · mirrored from the repo
The platform developer guide, mirrored chapter for chapter from the Remy repo — the primitives every app is built on, kept current at the source.
Agent SDK
@mindstudio-ai/agent
The backend runtime — your database, auth, files, and a gateway to 200+ AI models.
Interface SDK
@mindstudio-ai/interface
The frontend client — call methods, upload files, sign users in, and add chat or voice.
Admin SDK
@madewithremy/admin
The ops CLI — logs, analytics, releases, users, domains, and settings for the live app.
Models
349 models · refreshed daily
The managed catalog the three SDKs draw from: every model priced and specced, ready to call in a modelOverride. Refreshed daily.