What problem does it solve? Setting up a React Server Components router involves many moving parts: route trees, layouts, loaders, caching, error boundaries, and deployment concerns like sub-path hosting and CSP nonces. This Skill provides the patterns and configuration reference to bootstrap a Rango router correctly from the start. ## Core Features & Use Cases - Router Bootstrapping: Create a router with createRouter, a Document component, and Django-style urls() route definitions with named, type-safe routes. - Route Tree Composition: Nest layouts, parallel routes, loaders, loading skeletons, cache policies, middleware, and error/not-found boundaries in one declared tree. - Deployment Configuration: Configure basename sub-path deployment, cache stores, SSR streaming policy, telemetry sinks, CSP nonces, and connection warmup for platforms like Cloudflare Workers. - Use Case: You are scaffolding a new Rango app on Cloudflare Workers and need a router with a root layout, cached blog routes with loaders, a 404 page, and per-request cache configuration wired to the worker's fetch handler. ## Quick Start Ask the AI to create a Rango router with createRouter, a Document component, and a urls() route tree containing a home page and a blog route with a loader.