export { analyzeApp } from './analyze.js'; export { slugifyUrl, defaultBaselineRoot, saveBaseline, loadBaseline, listBaselines, deleteBaseline, compareBaselines, } from './baseline/baseline.js'; export type { BaselineGap, BaselineSnapshot, BaselineDeltaItem, BaselineDelta, } from './baseline/baseline.schema.js'; export { toAgentSummary } from './agent-summary.js'; export type { AgentSummary, AgentSummaryPolicy, AgentGate, CoverageStatus, AgentSummaryCostSummary, } from './agent-summary.js'; export { detectAuth, validateStorageState, evaluateStorageStateValidity, preflightStorageStateFile, waitForReturnToOrigin, } from './tools/auth/detect.js'; export type { StorageStateInvalidReason, StorageStateValidationResult, } from './tools/auth/detect.js'; export { exploreAuth } from './tools/auth/explore.js'; export { addUserProvider, removeUserProvider, listUserProviders } from './tools/auth/custom-providers.js'; export { scanRepo } from './tools/repo/scan.js'; export { discoverApiSurface, discoverApiSurfaceWithRepo } from './tools/repo/api-surface.js'; export type { ApiSurface, DiscoveredEndpoint, DiscoverApiSurfaceOptions } from './tools/repo/api-surface.js'; export { computeAutomationMaturity } from './tools/scoring/automation-maturity.js'; export { computeApiCoverage } from './tools/scoring/api-coverage.js'; export { detectPromptLeakage } from './tools/scoring/prompt-leakage.js'; export { scoreBugReport, scoreBugReportDeterministic, buildBugReportJudgePrompt, parseBugReportJudgeResponse, BUG_REPORT_JUDGE_MODEL, RUBRIC_MAX_PTS, SEVERITY_WEIGHT, hasQualityRepro, hasEvidence, delimitUntrusted, } from './tools/scoring/bug-report-score.js'; export type { ScoreBugReportOptions } from './tools/scoring/bug-report-score.js'; export { scoreDecisions, scoreForkDeterministic, loadDecisionForks, validateForksPath, resolveAllowedForksRoot, buildDecisionJudgePrompt, parseDecisionJudgeResponse, } from './tools/scoring/score-decisions.js'; export type { ScoreDecisionsOptions } from './tools/scoring/score-decisions.js'; export { validateSpecConformance } from './tools/scoring/spec-conformance.js'; export type { ValidateSpecConformanceOptions } from './tools/scoring/spec-conformance.js'; export type { ApiCoverageResult, ApiEndpointCoverage } from './tools/scoring/api-coverage.js'; export { scaffoldTests } from './scaffold-tests.js'; export type { ScaffoldOptions, ScaffoldResult, ProjectConfig } from './scaffold-tests.js'; export { expandRecipes, buildAuthScenarios, buildA11yScenarios, buildNavScenarios, buildSeedScenarios } from './recipes/index.js'; export { createProvider } from './llm/provider-registry.js'; export { resolveMaxOutputTokensPerLlmCall } from './schemas/config.schema.js'; export { resolveScanStateBaseDir, resolveReportDir } from './harness/state-manager.js'; export type { AnalyzeOptions, AnalyzeResult, AnalyzeStatus } from './analyze.js'; export type { AnalyzeProgressSink } from './harness/progress-log.js'; export type { TelemetrySink, TelemetryEvent, TelemetryEventKind, } from './telemetry/telemetry.interface.js'; export { NoopTelemetrySink } from './telemetry/telemetry.interface.js'; export { redactUrlForTelemetry } from './telemetry/emit.js'; export type { LlmCallResult, LlmProvider } from './llm/provider.interface.js'; export type { CallLlmConfigSlice } from './llm/provider.js'; export type { HarnessConfig, AuthConfig, RouteInventory, GapAnalysis, RepoAnalysis, DetectedAuth, AuthExploration, AuthPath, AuthPathRequirements, CostIntelligence, LlmUsageRecord, RepeatedAiPattern, DeterministicMaturity, PublicSurface, AutomationMaturity, AutomationMaturityDimension, FrameworkDetectionResult, DetectedFrameworkPrimary, RecipeId, RecipeConfig, BugReportScoreResult, BugReportRubric, BugReportInput, BugReportTarget, ScoreBugReportInput, DecisionScoreResult, ScoredDecisionFork, DecisionFork, ScoreDecisionsInput, } from './schemas/index.js'; export { RecipeIdSchema } from './schemas/index.js'; export { computeReleaseConfidence } from './tools/scoring/confidence.js'; export { computeProvenanceScore, gradeEvidenceItem, GRADE_WEIGHTS, WITNESS_TAXONOMY, } from './tools/scoring/provenance.js'; export { analyzeRunDiff, formatAnalyzeDiffMarkdown, loadGapAnalysisFile } from './cli/analyze-diff-run.js'; export { buildPageHeatmap, renderHeatmapSection, HEATMAP_DIMENSIONS, DIMENSION_LABELS } from './reporters/heatmap.js'; export type { PageHeatmap, HeatmapRow, HeatmapCell, HeatmapDimension } from './reporters/heatmap.js'; export type { AnalyzeDiffResult } from './cli/analyze-diff-run.js'; export { ciResultsToEvidence } from './adapters/ci-results-adapter.js'; export type { CiRunInput } from './adapters/ci-results-adapter.js'; export { prMetadataToEvidence } from './adapters/pr-metadata-adapter.js'; export type { PrMetadataInput, StatusCheck, ReviewDecision, MergeableState } from './adapters/pr-metadata-adapter.js'; export { buildConfidenceInputFromQulib } from './tools/scoring/confidence-from-qulib.js'; export { diffConfidence, deriveInbox, buildReplay, toAuditEntry } from './tools/scoring/confidence-views.js'; export type { EvidenceSourceKind, EvidenceItem, ConfidenceSubject, ConfidenceInput, ConfidencePolicy, ConfidenceVerdict, ConfidenceContribution, ReleaseConfidence, DeliveryTrafficPoint, InboxItem, InboxItemKind, ReplayStep, ReplayTrace, AuditEntry, ProvenanceScore, ProvenanceInput, ProvenanceGrade, ShipGate, ChangeType, } from './schemas/index.js'; export { EvidenceSourceKindSchema, EvidenceItemSchema, ConfidenceSubjectSchema, ConfidenceInputSchema, ConfidencePolicySchema, ConfidenceVerdictSchema, ReleaseConfidenceSchema, ProvenanceScoreSchema, ProvenanceInputSchema, PROVENANCE_RUBRIC_VERSION, } from './schemas/index.js'; //# sourceMappingURL=index.d.ts.map