codetether-agent 4.5.7

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
mod ack;
mod content;
mod eval;
mod screenshot;
mod snapshot;
mod tabs;
mod toggle;

pub use ack::Ack;
pub use content::{HtmlContent, TextContent};
pub use eval::EvalOutput;
pub use screenshot::ScreenshotData;
pub use snapshot::{PageSnapshot, Viewport};
pub use tabs::{TabInfo, TabList};
pub use toggle::ToggleOutput;

#[allow(dead_code)]
pub enum BrowserOutput {
    Ack(Ack),
    Eval(EvalOutput),
    Html(HtmlContent),
    Json(serde_json::Value),
    Screenshot(ScreenshotData),
    Snapshot(PageSnapshot),
    Tabs(TabList),
    Text(TextContent),
    Toggle(ToggleOutput),
}