
Rad
Schema first relational database with generated type safe clients and automatic migrations
Gallery
About Rad
Rad is an experimental relational database that rethinks the traditional stack by combining the database server, migration tooling, and type safe client generation into a single cohesive workflow. You define your schema in a YAML file, run one command to apply migrations, and get generated client code in Go or Rust that queries the database without raw SQL strings. The goal is to remove the friction between data modeling, persistence, and application code so that changes to your schema propagate automatically through the entire stack.
The problem it tackles is the disconnect most developers experience between their database and their application. You write a migration in SQL, then update your ORM models, then fix the type mismatches in your queries, then hope the production migration does not break something a test did not cover. Rad collapses those steps. The schema file is the single source of truth, migrations are generated from it, and the client library is regenerated to match. If you change a column name, the build fails until you fix every call site, which is exactly what you want.
Under the hood, Rad uses a machine friendly intermediate representation instead of raw SQL strings. Queries look like method chains in Go or Rust, compiled to a relational node graph that the planner optimizes. Persistence is backed by SlateDB on object storage rather than a custom disk format, which means you can run stateless compute against durable cloud storage without provisioning NVME volumes. The system supports standard relational operations including joins, CTEs, aggregations, and nested relationship reads that return structured data rather than flat rows.
It is aimed at developers building new projects who want a tighter feedback loop between schema and code, teams tired of maintaining separate migration and ORM tooling, and anyone experimenting with object storage backed databases. If you are already running a production workload on Postgres or MySQL, Rad is not a drop in replacement. It is research stage software designed for exploration, not for data you cannot afford to lose.
What sets it apart is the unified toolchain philosophy. Most databases treat migrations and client generation as afterthoughts or third party add ons. Rad treats them as first class features shipped in the same binary as the server. The generated clients are strongly typed, queries are validated at compile time, and the migration system handles online schema changes with data rewrites built in. There is also an AI agent integration that documents every CLI command so you can automate the workflow with skills compatible tooling.
Access is open source under a permissive license. You install the rad binary, init a project, define your schema, and start the server. The CLI handles migrations, code generation, and administration. Documentation is available on the website, and the GitHub repository includes a demo project. Be aware that this is a proof of concept with no API stability guarantees and zero production workloads. It is ready to try, not ready to trust with important data.
Key Features
- YAML schema as single source of truth
- Automatic migration generation
- Type safe Go and Rust clients
- Object storage backed persistence
- Compile time query validation
- AI agent skills documentation
Pros & Cons
What we like
- Schema changes propagate to clients automatically
- No raw SQL strings in application code
- Stateless compute over durable object storage
- Single binary includes server, CLI, and codegen
Room for improvement
- Research project with no production workloads
- No API stability guarantees yet
- Only generates clients for Go and Rust
- Requires learning a new query model
Frequently Asked Questions
What is Rad?
Is Rad production ready?
Which languages does Rad support?
How does Rad differ from traditional databases?
Best For
Featured in
Alternatives to Rad
View allMongoDB Atlas
The fully-managed cloud version of MongoDB with built-in search, vector search, time series, and serverless tiers.

Neon
Serverless Postgres with database branching, scale-to-zero compute, and a generous free tier.

Airtable
Spreadsheet-database hybrid with linked records, multiple views, automations, and an interface designer for internal apps.

DataExpert.io Academy
Live and self-paced academy that trains you for real data engineering and AI jobs
Reviews (0)
Badge builder
Add Rad to your website
Choose a badge style and size, preview it here, then copy the generated HTML. Badge images are self-contained SVGs and do not require an external script.
<a href="https://toolindex.net/tools/rad?ref=badge" target="_blank" rel="noopener">
<img src="https://toolindex.net/badge/rad/medium.svg" alt="Rad - Listed on Tool Index" width="180" height="50" />
</a> How to use the badge
- 1. Pick the style, size, and theme that fit your layout.
- 2. Copy the generated HTML from the code block.
- 3. Paste it into your footer, homepage, or press page.
Standard badge available
The standard listing badge is available now. Score and circle badges are limited to tools currently ranked in the top 10 of a category.
Badge clicks return visitors to this profile with a referral tag so the source remains identifiable.
Related Tools

Supabase
The open source Firebase alternative
Sleep Suivour
Track your sleep, improve your rest
PlanetScale
Serverless MySQL platform with branching and zero-downtime migrations

Neon
Serverless Postgres with database branching, scale-to-zero compute, and a generous free tier.
Work on Rad? Request listing access or correction