/** Admin console modules (server-safe: imported by the /admin/[module] route and the client shell). */ export const ADMIN_MODULES: { id: string; label: string; hint: string }[] = [ { id: 'overview', label: 'Overview', hint: 'Queue, workers, rates, storage, cost' }, { id: 'connectors', label: 'Connectors', hint: 'Connector control center' }, { id: 'sensors', label: 'Sensors', hint: 'Filters and actions' }, { id: 'companies', label: 'Companies', hint: 'Onboarding and rediscovery' }, { id: 'failures', label: 'Failures', hint: 'By class, last 24 h' }, { id: 'queue', label: 'Queue', hint: 'Jobs by kind and status' }, { id: 'llm', label: 'LLM jobs', hint: 'Enrichment pipeline' }, { id: 'reviews', label: 'Reviews', hint: 'Human review queue' }, { id: 'quality', label: 'Quality', hint: 'Coverage, freshness, calibration' }, { id: 'costs', label: 'Costs', hint: 'Per dimension and unit economics' }, ];