What problem does it solve? Setting up a TanStack Start application involves several error-prone steps—plugin ordering in Vite, router factory creation, root route document shell, and entry points—where small mistakes silently break SSR, hydration, or server function compilation. ## Core Features & Use Cases - Project Scaffolding Guidance: Walks through installing dependencies, configuring the tanstackStart() Vite plugin before react(), creating the getRouter() factory, and building the root route with HeadContent, Scripts, and Outlet. - Isomorphic Execution Guardrails: Explains that all code runs on both server and client by default, and that createServerFn is required for server-only logic—preventing the most common AI agent mistakes. - Sub-Skill Routing: Directs to specialized skills for server functions, middleware, auth, server routes, execution model, and deployment via a decision tree. - Use Case: You are bootstrapping a new full-stack React app with TanStack Start v1.166.2 and need the correct vite.config.ts, router.tsx, and __root.tsx files without hydration failures. ## Quick Start Ask the AI to scaffold a new TanStack Start project with the Vite plugin, router factory, and root route document shell configured correctly.