codetether-agent 4.5.7

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
use serde::Deserialize;

#[derive(Debug, Deserialize)]
#[serde(rename_all = "snake_case")]
pub(in crate::tool::browserctl) enum BrowserCtlAction {
    Health,
    Start,
    Stop,
    Snapshot,
    Goto,
    Back,
    Click,
    Upload,
    Fill,
    Type,
    Press,
    Text,
    Html,
    Eval,
    ClickText,
    FillNative,
    Toggle,
    Screenshot,
    MouseClick,
    KeyboardType,
    KeyboardPress,
    Reload,
    Wait,
    Tabs,
    TabsSelect,
    TabsNew,
    TabsClose,
    Detect,
    NetworkLog,
    Fetch,
    Axios,
    Xhr,
    Diagnose,
}