List all routes in the Next.js application
Lists all routes in a Next.js App Router application including pages, API endpoints, dynamic segments, and route groups.
/plugin marketplace add horuz-ai/claude-plugins/plugin install nextjs@horuzDiscover and list all routes in the Next.js App Router application.
get_project_metadata to confirm app structureapp/ directory for page.tsx and route.ts files## Application Routes
š Pages
/ ā app/page.tsx
/about ā app/about/page.tsx
/blog/[slug] ā app/blog/[slug]/page.tsx
š API Routes
/api/users ā app/api/users/route.ts
/api/auth/[...nextauth] ā app/api/auth/[...nextauth]/route.ts
š Route Groups
(marketing) ā app/(marketing)/...
(dashboard) ā app/(dashboard)/...
Include dynamic segments, catch-all routes, and route groups.