spb/company-atlas
Public
Python 66.3%
TypeScript 22.7%
JavaScript 8.6%
HTML 1.4%
CSS 0.7%
1/** Admin console modules (server-safe: imported by the /admin/[module] route and the client shell). */2export const ADMIN_MODULES: { id: string; label: string; hint: string }[] = [3 { id: 'overview', label: 'Overview', hint: 'Queue, workers, rates, storage, cost' },4 { id: 'connectors', label: 'Connectors', hint: 'Connector control center' },5 { id: 'sensors', label: 'Sensors', hint: 'Filters and actions' },6 { id: 'companies', label: 'Companies', hint: 'Onboarding and rediscovery' },7 { id: 'failures', label: 'Failures', hint: 'By class, last 24 h' },8 { id: 'queue', label: 'Queue', hint: 'Jobs by kind and status' },9 { id: 'llm', label: 'LLM jobs', hint: 'Enrichment pipeline' },10 { id: 'reviews', label: 'Reviews', hint: 'Human review queue' },11 { id: 'quality', label: 'Quality', hint: 'Coverage, freshness, calibration' },12 { id: 'costs', label: 'Costs', hint: 'Per dimension and unit economics' },13];14