codetether-agent 4.7.0-a-002.4

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
pub fn join_error(join_error: tokio::task::JoinError) -> anyhow::Error {
    if join_error.is_panic() {
        anyhow::anyhow!("TetherScript plugin task panicked: {join_error}")
    } else {
        anyhow::anyhow!("TetherScript plugin task join failed: {join_error}")
    }
}