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