tmai 1.6.0

Tactful Multi Agent Interface - Monitor and control multiple AI coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Web server module for remote control via smartphone
//!
//! Provides REST API and SSE for real-time agent monitoring and control.

mod api;
pub use api::reconnect_codex_ws;
pub mod auth;
mod events;
pub mod hooks;
mod server;
mod static_files;
mod ws;

pub use server::WebServer;