/** * Agent Analyzers * * Specialized agents for analyzing AI system behavior and ensuring * privacy, integrity, and safety. * * @module agents */ export { runPrivacyAnalysis, privacyToFindings, type PIIType, type PrivacyFinding, type TraceEntry, type PrivacyAnalysisResult, } from "./agent-privacy.js"; export { analyzeConsensus, hashFinding, verifyFindingChain, detectCrossContamination, runIntegrityCheck, integrityToFindings, type AgentContribution, type ConsensusAnalysis, type IntegrityFinding, type IntegrityIssueType, type VerificationChain, } from "./agent-integrity.js"; export { runZeroDayHunter, zeroDayToFindings, type ZeroDayHunterConfig, type ZeroDayHunterResult, type ZeroDayFinding, type ZeroDayFocusArea, } from "./zero-day-hunter.js"; export { runLogicFlawDetector, logicFlawToFindings, type LogicFlawDetectorConfig, type LogicFlawDetectorResult, type LogicFlawFinding, type LogicFlawCategory, } from "./logic-flaw-detector.js"; export { analyzeExploitChains, exploitChainsToFindings, getChainSummary, type ExploitChain, type ExploitChainResult, type ChainStep, } from "./exploit-chain.js"; export { runAdversaryAnalysis, adversaryToFindings, estimateAdversaryCost, createDefaultConfig, createFocusedConfig, getModelForTier, type AdversaryConfig, type AdversaryResult, type AdversaryFinding, type AdversaryModel, type AggressivenessLevel, type AttackFocusArea, type ProofOfConcept, type ExploitChain as AdversaryExploitChain, } from "./adversary/index.js"; export { runAntagonistAnalysis, quickAntagonistCheck, synthesizeNarratives, synthesizeNarrativesDeterministic, runChallenger, runChallengerDeterministic, prioritizeRemediations, calculatePrioritizationMetrics, type AntagonistInput, type AntagonistConfig, type AntagonistResult, type AttackNarrative, type AttackStep, type ChallengerAssessment, type GapAnalysis, type PrioritizedRemediation, type KillChainPhase, type Difficulty, type Likelihood, type ChallengeType, } from "./antagonist/index.js"; //# sourceMappingURL=index.d.ts.map