codetether-agent 4.5.7

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
use crate::browser::{BrowserCommand, BrowserError, BrowserOutput, request::NavigationRequest};
use crate::tool::browserctl::helpers::require_string;
use crate::tool::browserctl::input::BrowserCtlInput;

pub(in crate::tool::browserctl) async fn goto(
    input: &BrowserCtlInput,
) -> Result<BrowserOutput, BrowserError> {
    let request = NavigationRequest {
        url: require_string(&input.url, "url")?.to_string(),
        wait_until: input
            .wait_until
            .clone()
            .unwrap_or_else(|| "domcontentloaded".into()),
    };
    super::super::execute(input, BrowserCommand::Goto(request)).await
}

pub(in crate::tool::browserctl) async fn back(
    input: &BrowserCtlInput,
) -> Result<BrowserOutput, BrowserError> {
    super::super::execute(input, BrowserCommand::Back).await
}

pub(in crate::tool::browserctl) async fn reload(
    input: &BrowserCtlInput,
) -> Result<BrowserOutput, BrowserError> {
    super::super::execute(input, BrowserCommand::Reload).await
}