export interface ProviderAvailability { native: { claude: boolean openai: boolean gemini: boolean } opencodeZen: boolean copilot: boolean zai: boolean kimiForCoding: boolean isMaxPlan: boolean } export interface AgentConfig { model: string variant?: string } export interface CategoryConfig { model: string variant?: string } export interface GeneratedOmoConfig { $schema: string agents?: Record categories?: Record [key: string]: unknown }