Presets
Choose a route, not a vibe.
Pick the architecture first—TypeScript fullstack, Convex + Next.js, Rust API, Solana web, and others. The CLI generates scopes, docs, and verification hooks that match that route. No preset is marked Stable until the verification matrix proves it.
| Preset | Status | Capabilities | Shape | Scaffold | Best for |
|---|---|---|---|---|---|
typescript-fullstack TypeScript Fullstack | Stable |
| Next.js web + Express API + tRPC + Better Auth + Prisma | bun run dev:cli -- my-app --preset=typescript-fullstack --yes | Default fullstack starting point |
next-app Next.js App | Stable |
| Standalone Next.js App Router with env validation and boundaries | bun run dev:cli -- my-app --preset=next-app --yes | Frontend-only apps without a bundled backend |
rust-api Rust API | Stable |
| Cargo workspace with service and worker slots | bun run dev:cli -- my-app --preset=rust-api --yes | Engine services, background work, and future polyglot scale |
rust-fullstack Rust Fullstack | Stable |
| Next.js web + Axum API + shared deployment docs | bun run dev:cli -- my-app --preset=rust-fullstack --yes | Teams that want Rust on the API with a typed web client |
convex-product Convex + Next.js | Stable |
| Next.js + Convex functions + Better Auth stubs | bun run dev:cli -- my-app --preset=convex-product --yes | Realtime apps, serverless backend, no Prisma/Neon ops |
solana-program Solana Program | Stable |
| Anchor program + generated client boundaries | bun run dev:cli -- my-app --preset=solana-program --yes | On-chain program work with explicit client contracts |
solana-web Solana Web dApp | Stable |
| Next.js dApp + program + wallet adapter direction | bun run dev:cli -- my-app --preset=solana-web --yes | Web3 apps with web wallet flows |
solana-mobile Solana Mobile dApp | Stable |
| Expo mobile + program + mobile wallet boundary | bun run dev:cli -- my-app --preset=solana-mobile --yes | Mobile-first Solana products |
solana-product Solana Product | Stable |
| Web + mobile + program + shared Solana config | bun run dev:cli -- my-app --preset=solana-product --yes | Full product surface across web, mobile, and chain |
tui-app Terminal UI App | Stable |
| OpenTUI renderer + React terminal UI starter | bun run dev:cli -- my-app --preset=tui-app --yes | Interactive CLI tools and terminal dashboards |
tanstack-start TanStack Start | Stable |
| TanStack Start + Vite + Nitro server with file routes | bun run dev:cli -- my-app --preset=tanstack-start --yes | Full-stack React apps without Next.js |
Entry routes
Customize walks capability validation; Experiments is explicit opt-in for unstable generators. Both use the same CLI entrypoint with different preset ids.
| Preset | Status | Capabilities | Shape | Scaffold | Best for |
|---|---|---|---|---|---|
customize Customize | Requires validation | — | Capability picker with validation gates | bun run dev:cli -- my-app --preset=customize --yes | Teams that need a bespoke mix of bundles and backends |
experiments Experiments | Experimental | — | Experimental routes only | bun run dev:cli -- my-app --preset=experiments --yes | Trying unstable generators with clear expectations |
Evidence
Verification matrix
Code guard in packages/registry. Guide: verification and presets.
Graduation checks per preset. Scroll horizontally on small screens — full matrix lives in the docs.
| Preset | Install | Lint | Typecheck | Build | Rust | Solana | Convex | TUI | Smoke |
|---|---|---|---|---|---|---|---|---|---|
typescript-fullstack Stable | yes | yes | yes | yes | — | — | — | — | — |
next-app Stable | yes | yes | yes | yes | — | — | — | — | yes |
rust-api Stable | — | — | — | — | yes | — | — | — | — |
rust-fullstack Stable | yes | yes | yes | yes | yes | — | — | — | — |
convex-product Stable | yes | yes | yes | yes | — | — | yes | — | — |
solana-program Stable | yes | yes | yes | yes | — | yes | — | — | — |
solana-web Stable | yes | yes | yes | yes | — | yes | — | — | — |
solana-mobile Stable | yes | yes | yes | yes | — | yes | — | — | — |
solana-product Stable | yes | yes | yes | yes | — | yes | — | — | — |
tui-app Stable | yes | — | yes | yes | — | — | — | yes | — |
tanstack-start Stable | yes | yes | yes | yes | — | — | — | — | yes |
yes = verified in CI · — = not part of this preset route