stakpak-gateway 0.3.45

Stakpak: Your DevOps AI Agent. Generate infrastructure code, debug Kubernetes, configure CI/CD, automate deployments, without giving an LLM the keys to production.
Documentation
pub mod api;
pub mod channels;
pub mod chunking;
pub mod client;
pub mod config;
pub mod dispatcher;
pub mod router;
pub mod runtime;
pub mod store;
pub mod targeting;
pub mod types;

pub use channels::{Channel, ChannelTestResult};
pub use client::StakpakClient;
pub use config::{ApprovalMode, GatewayCliFlags, GatewayConfig};
pub use router::{Binding, BindingMatch, DmScope, PeerMatch, PeerMatchKind, RouterConfig};
pub use runtime::{Gateway, build_channels};
pub use store::{GatewayStore, SessionMapping};
pub use types::{
    ChannelId, ChatType, DeliveryContext, InboundMessage, MediaAttachment, OutboundReply, PeerId,
};