InfrastructureLive in Production

Atlas

Backend generation engine for AI agents. One API call creates a fully-configured backend with collections, relations, auth, and TLS — in under 2 seconds.

$ atlas create my-app --template saas-starter
Container created
Schema applied (5 collections, 0 errors)
TLS provisioned
Live at https://my-app.projects.orphiclabs.is
Ready in 1.8s

The Problem

AI agents can generate frontend code in seconds. But when they need a database, auth, or file storage, the human has to step in — manually provisioning Supabase, configuring schemas, wiring credentials.

Atlas eliminates that bottleneck. It gives agents (and developers) a single API endpoint that provisions a complete, isolated, production-ready backend from a schema specification. No console. No dashboard clicks. No human in the loop.

Capabilities

{ }

Schema-as-Code

Define your data model in JSON. Atlas provisions the backend, creates collections, wires relations, sets API rules, and seeds data — all from a single API call.

Backend Templates

Pre-built schemas for common patterns. SaaS starter, e-commerce, and CMS — deploy a production-ready backend in 60 seconds.

Container Isolation

Every project runs in its own Docker container with isolated storage, auth, and API. True multi-tenancy — not row-level security, physics-level separation.

Auto-TLS & Routing

Caddy provisions TLS certificates and configures subdomain routing automatically. Your backend is live at project.yourdomain.com with zero configuration.

Self-Healing Infrastructure

On every startup, Atlas reconciles its registry against running containers. Orphaned backends are recovered. Missing routes are re-injected. The system heals itself.

Backend Cloning

Fork any backend — schema and data. Create staging environments, test migrations safely, or branch your infrastructure like code.

Starter Templates

saas-starter

Multi-tenant SaaS foundation with team management and Stripe-ready subscriptions.

users · teams · team_members · subscriptions · api_keys

atlas create --template saas-starter

ecommerce

Full product catalog with order lifecycle, nested categories, and moderated reviews.

customers · products · categories · orders · order_items · reviews

atlas create --template ecommerce

cms

Content management with draft/published workflow, SEO fields, and media library.

authors · posts · categories · tags · media

atlas create --template cms

Architecture

// The Atlas Stack
CLI / REST API → Agent or developer sends schema
Manager (Hono) → Validates, orchestrates lifecycle
Docker Engine → Provisions isolated containers
PocketBase → Database + Auth + API + Files per tenant
Caddy → Auto-TLS + subdomain routing
Monorepo: TypeScript · Hono · Next.js · Docker · Caddy · PocketBase
Testing: Vitest · 58 tests · GitHub Actions CI

API Surface

POST /api/projects // Create with schema or template
GET /api/projects // List all backends
GET /api/projects/:slug/credentials // Agent credential retrieval
POST /api/projects/:slug/clone // Fork a backend
POST /api/projects/:slug/start // Start container
POST /api/projects/:slug/stop // Stop container
DEL /api/projects/:slug // Remove backend
GET /api/templates // List available templates
GET /api/schema/field-types // Field type reference
GET /api/health // System health

Request Early Access

Atlas is running in production at Orphic Labs. Early access is available for teams building agent-first infrastructure, AI code generators, or multi-tenant platforms.