What problem does it solve? Adding a page to a Next.js site is easy, but wiring it into every place the site tracks pages is not: sidebars, breadcrumbs, sitemap, footer, command palette, AI chat corpus, and page-summary panels all need consistent registration, and missing one fails silently or breaks the build. This Skill walks through the complete checklist so a new route is never orphaned. ## Core Features & Use Cases - Exemplar-mirrored page creation: Copies the live exemplar pages' layout shell (page.tsx, page.module.css, layout.tsx) instead of improvising structure, enforcing design-token and composition rules. - Complete registration wiring: Covers sidebar arrays, breadcrumbs, sitemap, footer links, command palette, page summaries, case-study registries, and blueprint sync scripts, including the exceptions for work, blueprint, standalone, and hidden pages. - Build-gate awareness: Documents which validators enforce each registration (validate-page-summaries, validate-case-studies, validate-website-surfaces) and which fail silently, so nothing is skipped. - Use Case: When asked to "add a page for our pricing philosophy", the Skill gathers the path and copy, mirrors the exemplar shell, registers the route in navigation.ts and page-summaries.json, and verifies sidebar highlighting and breadcrumbs in both themes. ## Quick Start Ask the AI to add a new page to the website for a given topic and section, and it will create the route files and wire up all navigation registrations.