collet 0.1.1

Relentless agentic coding orchestrator with zero-drop agent loops
Documentation
//! Remote control gateway — Telegram, Slack, Discord integration.
//!
//! Allows controlling collet agent sessions from chat platforms.
//! Each platform adapter runs in its own tokio task and sends
//! normalized `IncomingCommand`s to the central `RemoteGateway`.

pub mod adapter;
pub mod auth;
pub mod channel_map;
pub mod commands;
pub mod formatter;
pub mod gateway;
pub mod session_pool;

#[cfg(feature = "discord")]
pub mod discord;
#[cfg(feature = "slack")]
pub mod slack;
#[cfg(feature = "telegram")]
pub mod telegram;