tuitbot-core 0.1.47

Core library for Tuitbot autonomous X growth assistant
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Deterministic QA evaluator for generated content.
//!
//! This module builds a structured QA report that can be persisted alongside
//! drafts and approval items. It is intentionally rule-based and deterministic
//! so behavior is predictable and testable.

pub use content_check::QaEvaluator;
pub use types::{QaCategory, QaFlag, QaLanguages, QaReport, QaScoreSummary, QaSeverity};

mod account_check;
mod content_check;
mod scoring;
pub mod types;

#[cfg(test)]
mod tests;