What problem does it solve? Client-rendered single-page apps built on the Manus web-db-user template serve an empty HTML shell to crawlers and social scrapers, so pages are invisible to search engines and link previews render blank. This Skill converts that template into a server-side rendered app with per-route titles, meta tags, and real HTTP status codes. ## Core Features & Use Cases - Full SSR conversion checklist: Split client/server entries, prefetch tRPC queries into a dehydrated TanStack Query cache, and wire Express to compose and serve rendered HTML without changing any page component or design. - SEO parity built in: Per-route title, description, Open Graph, Twitter Card, canonical tags, real 404 status codes, and noindex handling for auth-gated routes. - Pitfall reference and verification harness: A catalog of observed failures (hydration mismatches, browser-global crashes, build misconfigurations) plus a curl-based script that asserts crawler-visible output per route. - Use Case: A storefront built on the Manus full-stack template needs Google to index its product pages and social platforms to render link-preview cards; follow the checklist to convert it to SSR and verify every route class with the bundled script. ## Quick Start Ask the AI to convert this Manus web-db-user template project to server-side rendering so crawlers see fully populated pages, then run the verification script against the production build.