/** * Next-Unicorn SKILL — public API entry point. * * This file is a pure re-export surface. All orchestration logic * lives in orchestrator.ts (Occam's Razor: index.ts does not think). */ export declare const VERSION = "2.1.0"; export { analyze } from './orchestrator.js'; export type { LibraryRecommendation, Recommender, GapRecommendation, AnalyzeOptions, AnalyzeResult, ExclusionRecord, } from './orchestrator.js'; export { scanCodebase } from './analyzer/scanner.js'; export { analyzeStructure } from './analyzer/structure-analyzer.js'; export { analyzeCodeOrganization } from './analyzer/code-organization-analyzer.js'; export { getPatternCatalog } from './analyzer/pattern-catalog.js'; export type { Detection, WorkspaceScan, ScanResult, StructuralFinding, StructuralAnalysis, CodeOrganizationStats, } from './analyzer/types.js'; export type { CodeOrganizationAnalysis } from './analyzer/code-organization-analyzer.js'; export type { InputSchema } from './schemas/input.schema.js'; export type { OutputSchema, UxAuditItem } from './schemas/output.schema.js'; export type { Context7Client, VerificationResult } from './verifier/context7.js'; export type { VulnerabilityClient } from './security/osv-client.js'; export type { RegistryClient } from './updater/registry-client.js'; export type { PlatformClient } from './pr-creator/platform-client.js'; export type { GitOperations } from './pr-creator/git-operations.js'; export type { PeerDependencyResolver } from './checker/peer-dependency-checker.js'; //# sourceMappingURL=index.d.ts.map