codetether-agent 4.7.0-a-002.4

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
//! TetherScript-backed plugin tool.

pub mod convert;
mod errors;
mod execute;
mod input;
mod join;
mod load;
mod partner;
mod result;
mod runner;
mod schema;
mod task;
mod tool;

#[cfg(test)]
mod tests;

pub use tool::TetherScriptPluginTool;

pub(crate) use partner::register;