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 audit;
9pub mod benchmark;
10pub mod cli;
11pub mod cognition;
12pub mod config;
13pub mod k8s;
14pub mod mcp;
15pub mod moltbook;
16pub mod provider;
17pub mod ralph;
18pub mod rlm;
19pub mod secrets;
20pub mod server;
21pub mod session;
22pub mod swarm;
23pub mod telemetry;
24pub mod tool;
25pub mod tui;
26pub mod worktree;