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 get no search indexing and no link-preview cards. This Skill converts that template into a server-side rendered app so crawlers receive fully populated first-paint HTML with correct per-route titles, meta tags, canonical URLs, and real 404 status codes. ## Core Features & Use Cases - Full SSR conversion checklist: Split the app into entry-server/entry-client, prefetch tRPC queries into a dehydrated TanStack Query cache, and wire Express to render and inject head tags per route. - SEO parity built in: Per-route title, description, Open Graph, Twitter Card, canonical links, noindex handling for gated routes, and real 404 responses for missing slugs. - Pitfall-driven debugging: A references playbook and pitfalls guide covering hydration mismatches, browser-global crashes, build configuration, and caching hazards, plus a verify-ssr.sh crawler test harness. - Use Case: A law-firm site built on the template needs Google to index its news articles and WeChat to render share cards; follow the checklist to add SSR, then run the verification script to confirm every route returns correct status, content, and meta tags. ## Quick Start Ask the AI to convert your Manus web-db-user template project to server-side rendering so crawlers can see the page content and meta tags.