codetether_agent/lib.rs
1//! CodeTether Agent - A2A-native AI coding agent
2//!
3//! A Rust implementation of an AI coding agent with first-class support for the
4//! A2A (Agent-to-Agent) protocol and the CodeTether ecosystem.
5
6pub mod a2a;
7pub mod agent;
8pub mod cli;
9pub mod config;
10pub mod mcp;
11pub mod provider;
12pub mod ralph;
13pub mod rlm;
14pub mod secrets;
15pub mod server;
16pub mod session;
17pub mod swarm;
18pub mod telemetry;
19pub mod tool;
20pub mod tui;
21pub mod worktree;