tauri-agent-plugin 0.0.2

Agent-facing control surface for live Tauri apps using compact semantic trees.
Documentation
const COMMANDS: &[&str] = &[
    "agent_bridge_response",
    "agent_attach",
    "agent_snapshot",
    "agent_find",
    "agent_action",
    "agent_inspect",
    "agent_eval",
    "agent_type",
    "agent_select",
    "agent_check",
    "agent_upload",
    "agent_hover",
    "agent_focus",
    "agent_blur",
    "agent_scroll",
    "agent_drag",
    "agent_screenshot",
    "agent_logs",
    "agent_events",
    "agent_network",
    "agent_ipc",
    "agent_storage",
    "agent_cookies",
    "agent_location",
    "agent_windows",
    "agent_window",
    "agent_wait",
    "agent_expect",
    "agent_state",
    "agent_dialog",
    "agent_record",
    "agent_stream",
];

fn main() {
    // The public crate name does not use Tauri's `tauri-plugin-*` convention,
    // so give its build helper the stable runtime identity explicitly.
    std::env::set_var("CARGO_PKG_NAME", "tauri-plugin-agent");
    tauri_plugin::Builder::new(COMMANDS).build();
}