What problem does it solve? Building modern full-stack TypeScript applications requires coordinating many moving parts—React 19 Server Components, Next.js 16 App Router conventions, end-to-end type safety, and schema validation—which is error-prone without consistent, up-to-date patterns. ## Core Features & Use Cases - Modern TypeScript Patterns: Covers TypeScript 5.9 features including the satisfies operator, deferred module evaluation, Stage 3 decorators, and advanced type utilities like conditional and template literal types. - React 19 & Next.js 16 Guidance: Provides patterns for Server Components, the use hook, Server Actions, useActionState, metadata APIs, middleware, and rendering strategies (SSR/SSG/ISR/PPR). - Type-Safe API Layer: Includes complete tRPC 11 router setups with protected procedures, Zod 3.23 schema validation, React Query client integration, and testing templates with Vitest and Playwright. - Use Case: When scaffolding a Next.js 16 dashboard with a tRPC backend, use this Skill to generate the router definitions, Zod input schemas, and client-side query hooks with full end-to-end type inference. ## Quick Start Ask the assistant to create a type-safe tRPC router with Zod validation for a Next.js 16 App Router project.