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 event_stream;
15pub mod k8s;
16pub mod lsp;
17pub mod mcp;
18pub mod moltbook;
19pub mod opencode;
20pub mod provider;
21pub mod ralph;
22pub mod rlm;
23pub mod secrets;
24pub mod server;
25pub mod session;
26pub mod swarm;
27pub mod telemetry;
28pub mod tool;
29pub mod tui;
30pub mod worktree;