proto-blue-api 0.3.0

AT Protocol high-level API: agent, rich text, moderation, generated types
Documentation
//! Moderation engine for AT Protocol.
//!
//! Implements label-based content moderation, mute word matching,
//! and priority-based decision aggregation for UI contexts.

pub mod decision;
pub mod labels;
pub mod mutewords;
pub mod subjects;
pub mod types;

pub use decision::ModerationDecision;
pub use labels::{find_label_def, known_labels};
pub use mutewords::{MutedWordMatch, check_muted_words};
pub use subjects::{
    EmbedView, QuoteEmbed, SubjectAccount, SubjectPost, SubjectProfile, decide_account,
    decide_post, decide_profile, extract_quote_embed,
};
pub use types::*;