Skip to main content

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 cognition;
10pub mod config;
11pub mod mcp;
12pub mod provider;
13pub mod ralph;
14pub mod rlm;
15pub mod secrets;
16pub mod server;
17pub mod session;
18pub mod swarm;
19pub mod telemetry;
20pub mod tool;
21pub mod tui;
22pub mod worktree;