Create a new screen in the Multi-site Dashboard with automatic route registration
Creates new screens in client/dashboard with automatic route discovery and registration.
First, find all router files and extract available routes.
Use Glob to discover router files:
client/dashboard/app/router/*.tsx
client/dashboard/app/router/*.ts
For each router file, use Grep to extract route information.
Find exported route constants:
export\s+const\s+(\w+Route)\s*=\s*createRoute
getParentRoute:\s*\(\)\s*=>\s*(\w+Route)
Extract path segments: