agent-first-http 0.7.0

Give an AI agent its own isolated browser to actually open a URL — running JavaScript when the page needs it and returning the page as files the agent can read — so it works from the real page instead of a search guess, an empty app shell, or a login wall, all without touching the browser you use every day.
Documentation
//! Client-side SDK. Never imports `chromiumoxide`; speaks CDP over raw
//! WebSocket and HTTP over `reqwest`. Everything browser-dependent goes
//! through an `afhttp host` endpoint.

pub mod capabilities;
pub mod cdp;
pub mod client;
pub mod endpoint;
pub mod fetch;
pub mod health;
pub mod profile;
pub mod takeover;

pub mod inline;

pub use client::Client;
pub use endpoint::Endpoint;
pub use fetch::{FetchBuilder, FetchCookie, FetchCookieSameSite, FetchResult, RenderMode, Wait};
#[cfg(feature = "host")]
pub use inline::InlineConfig;
pub use takeover::TakeoverHandoffResponse;