//! Trello Integration
//!
//! Polls Trello board(s) for new card comments, routes them to the AI,
//! and replies by posting comments back on the card.
//!
//! Layout: [`state`] holds the shared `TrelloState`; `agent` polls,
//! `handler` routes comments, `client` wraps the REST API and `models`
//! holds its types. This file is declarations only — no function
//! definitions live here (CONTRIBUTING.md).
pub
pub use TrelloAgent;
pub use TrelloClient;
pub use TrelloState;