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
//! Watchdog stalled-request recovery module.

pub mod detector;
pub mod handler;
pub mod notification;
pub mod state;

pub use detector::check_watchdog_stall;
pub use handler::{handle_watchdog_cancel, handle_watchdog_dismiss};
pub use notification::render_watchdog_notification;
pub use state::WatchdogNotification;