What problem does it solve?
This Skill removes the repetitive setup work of building a new fullstack feature by generating the database schema, API endpoints, and the corresponding UI route in a consistent, stack-aligned way.
Core Features & Use Cases
- Database schema + relations: Creates a Drizzle table (with id, createdAt, updatedAt) and hooks up relations for your feature’s data model.
- tRPC CRUD wiring: Generates CRUD procedures (list, byId, create, update, delete), validates inputs with Zod, and registers them in the root tRPC router.
- UI route + components: Produces a route page plus list/form components using TanStack Router patterns and TanStack Form + Zod validation, ready for authenticated or public placement.
- Use Case: Build a new “Projects” feature by scaffolding validators, DB table, tRPC router procedures, an authed route, and the list + create/edit UI in one cohesive workflow.
Quick Start
Ask an AI to run the scaffold skill to generate a complete fullstack feature named "projects" using the template’s standard Zod, Drizzle, tRPC, and TanStack Router conventions.