export type WorkspaceSourceKind = 'docx' | 'xlsx' | 'pdf' | 'markdown' | 'image' | 'repo' | 'ticket' | 'chat' | 'json' | 'text' | 'unknown'; export type WorkspaceSourceRole = 'template' | 'source_data' | 'example_output' | 'instructions' | 'reference' | 'unknown'; export interface WorkspaceSourceInventoryItem { path: string; sourceKind: WorkspaceSourceKind; inferredRole: WorkspaceSourceRole; extractionStatus: 'pending' | 'ready'; confidence: number; relatedPlugin?: string; lastUsedAt?: string; } export type RouterMode = 'intake_demo' | 'infer_workflow' | 'autonomous_run' | 'lightweight_interview' | 'verify_and_deliver' | 'repo_implementation'; export interface IntentRouteDecision { mode: RouterMode; hiddenSpecialistLanes: string[]; nextAction: 'ask' | 'inspect' | 'draft' | 'verify' | 'deliver'; explanation: string; } //# sourceMappingURL=types.d.ts.map