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 okr;
20pub mod opencode;
21pub mod provider;
22pub mod ralph;
23pub mod rlm;
24pub mod secrets;
25pub mod server;
26pub mod session;
27pub mod swarm;
28pub mod telemetry;
29pub mod tool;
30pub mod tui;
31pub mod worker_server;
32pub mod worktree;