Reference
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 --latest
Reference3 packages · 349 models · 17 guide chapters · 56 sections · 825 entries

Guide

17 chapters · mirrored from the repo
17 chapters
Overview
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
15 sections · 285 entries
Overview
The backend runtime — your database, auth, files, and a gateway to 200+ AI models.

Interface SDK

@mindstudio-ai/interface
6 sections · 60 entries
Overview
The frontend client — call methods, upload files, sign users in, and add chat or voice.

Admin SDK

@madewithremy/admin
20 sections · 114 entries
Overview
The ops CLI — logs, analytics, releases, users, domains, and settings for the live app.

Models

349 models · refreshed daily
14 types · 349 models
Overview
The managed catalog the three SDKs draw from: every model priced and specced, ready to call in a modelOverride. Refreshed daily.