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
4//! the A2A (Agent-to-Agent) protocol and the CodeTether ecosystem.
5
6pub mod a2a;
7pub mod agent;
8pub mod audit;
9pub mod autochat;
10pub mod benchmark;
11pub mod browser;
12pub mod bus;
13pub mod cli;
14pub mod cloudevents;
15pub mod cognition;
16pub mod config;
17pub mod event_stream;
18pub mod forage;
19pub mod github_pr;
20pub mod indexer;
21pub mod k8s;
22pub mod lsp;
23pub mod mcp;
24pub mod moltbook;
25pub mod okr;
26pub mod provenance;
27pub mod provider;
28pub mod ralph;
29pub mod rlm;
30pub mod search;
31pub mod secrets;
32pub mod server;
33pub mod session;
34pub mod swarm;
35pub mod telemetry;
36pub mod tls;
37pub mod tool;
38pub mod tui;
39pub mod util;
40pub mod worker_server;
41pub mod worktree;