pmat 3.15.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(coverage_nightly, coverage(off))]
// Red Team Mode: Automated hallucination detection for software repositories
//
// Based on specification: docs/specifications/red-team-mode-spec.md v1.1
// Implements detection of false claims in commit messages, documentation, and code comments

pub mod claim_extractor;
pub mod evidence_gatherer;
pub mod intent_classifier;

pub use claim_extractor::{Claim, ClaimCategory, ClaimExtractor};
pub use evidence_gatherer::{EvidenceGatherer, EvidenceResult, EvidenceSource, RepositoryContext};
pub use intent_classifier::{
    CommitInfo, CommitIntent, IntentClassification, IntentClassifier, SignalResult, TestChanges,
};