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 crash;
18pub mod distill;
19pub mod event_stream;
20pub mod forage;
21pub mod github_pr;
22pub mod image_clipboard;
23pub mod indexer;
24pub mod k8s;
25pub mod knowledge_graph;
26pub mod lsp;
27pub mod marketplace;
28pub mod mcp;
29pub mod memory;
30pub mod mesh;
31pub mod moltbook;
32pub mod okr;
33pub mod platform;
34pub mod plugin_marketplace;
35pub mod provenance;
36pub mod provider;
37pub mod ralph;
38pub mod rlm;
39pub mod search;
40pub mod secrets;
41pub mod server;
42pub mod session;
43pub mod swarm;
44pub mod telemetry;
45pub mod tls;
46pub mod tool;
47pub mod tui;
48pub mod util;
49pub mod voice;
50pub mod worker_server;
51pub mod workspace_scan;
52pub mod worktree;
53pub mod worktree_stub;