schema0-web-crud
Installation
SKILL.md
Web Feature Development
Web only. Requires
apps/web/to exist. Skip this entirely ifapps/web/does not exist.
Web Stack
- React Router v7 + TanStack DB + TanStack React Table
- oRPC for API (NOT tRPC)
- Drizzle ORM + drizzle-zod for schema
- shadcn/ui components (Dialog, AlertDialog, DataTable, Form)
- react-hook-form + zodResolver for forms
import { z } from "zod/v4"everywhere -- NEVERimport z from "zod"
Implementation Order
For every new entity, create files in this exact sequence:
- Database Schema (
packages/db/src/schema/{entities}.ts) - API Router (
packages/api/src/routers/{entities}.ts)
Related skills
More from schema0/skills
schema0-dev
>-
23schema0-mobile
Mobile platform patterns — React Native / Expo, worker architecture, ORPC client, and navigation
17schema0-rls
Row-level security setup — RLS policies, authenticated database connections, and user-scoped data access
17schema0-ai
AI SDK integration with ORPC — chat streaming, prompt-response, tool calling, and provider configuration
17schema0-testing
Testing guide for web and mobile platforms — bun:test, Jest, PGlite, 3-layer validation, and test templates
17schema0-cli
CLI commands for sandbox execution, deployment, version management, secrets, and third-party integrations
17