codetether-agent 4.5.7

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Swarm integration for agents.
//!
//! This module implements the swarm actor and handler traits so an `Agent` can
//! participate in delegated task execution.
//!
//! # Examples
//!
//! ```ignore
//! let id = agent.actor_id();
//! ```

mod actor_impl;
mod handler_impl;
mod task_execution;