···89## ✨ Features
1011-- **Schema-first:** Define and validate collections using any schema validator
12- that supports [Standard Schema](https://standardschema.dev).
13- **Type-safe operations:** Auto-complete and strict typings for `insert`,
14 `find`, `update`, and `delete`.
15- **Minimal & modular:** No decorators or magic. Just clean, composable APIs.
···3031## 🚀 Quick Start
3233-Examples below use Zod but any schema validator that supports
34-[Standard Schema](https://standardschema.dev) will work.
35-36### 1. Define a schema
3738```ts
39// src/schemas/user.ts
40-import { z } from "zod";
4142export const userSchema = z.object({
43 name: z.string(),
···89## ✨ Features
1011+- **Schema-first:** Define and validate collections using [Zod](https://zod.dev).
012- **Type-safe operations:** Auto-complete and strict typings for `insert`,
13 `find`, `update`, and `delete`.
14- **Minimal & modular:** No decorators or magic. Just clean, composable APIs.
···2930## 🚀 Quick Start
3100032### 1. Define a schema
3334```ts
35// src/schemas/user.ts
36+import { z } from "@zod/zod";
3738export const userSchema = z.object({
39 name: z.string(),