codetether-agent 4.7.0-a-002.4

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Windows-native browser helpers via Win32 + registry.
//!
//! Replaces `where.exe` subprocess calls and static path probing with:
//! - Registry-based Chrome/Edge discovery
//! - Process enumeration to detect running debuggable browsers
//! - Window–PID correlation for native input coordination

mod discover;
mod process;
mod query;
mod registry;

pub use discover::find_browser;
pub use process::find_debug_browser;
pub use registry::registry_browser_path;