codetether-agent 4.5.2

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Backward-compatible helper re-exports for agent actions.
//!
//! This module now acts as a thin facade over focused helper modules.
//! It preserves existing imports while keeping implementation concerns
//! split into smaller files.
//!
//! # Examples
//!
//! ```ignore
//! let registry = helpers::get_registry().await?;
//! ```

pub(super) use super::params::Params;
pub(super) use super::registry::get_registry;