agent-first-http 0.5.0

Give an AI agent any URL and get back a usable page — fetched directly, or rendered in a real browser when the page needs one — with a human able to take over the same browser for a login, captcha, or 2FA.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Browser host: launches Chromium, holds the profile lock, runs the
//! listener that exposes CDP, `/health`, `/capabilities`, and the ops panel.
//! Behind the `host` feature so SDK-only consumers don't link chromiumoxide.

pub mod bootstrap;
pub mod browser;
pub mod display;
pub mod listener;
pub mod ops_panel;

pub use bootstrap::HostArgs;