docs.rs failed to build aa-proxy-0.0.1-alpha.8
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Sidecar traffic interception proxy for Agent Assembly.
This crate implements the Layer 2 interception model: a sidecar proxy that sits alongside each AI agent process, intercepting outbound HTTPS traffic and enforcing governance policies before forwarding requests.
Architecture
TCP accept loop → CONNECT tunnel → TLS termination → intercept → forward
Entry points
- Binary (
aa-proxy): standalone sidecar spawned byaa-runtimeviatokio::process::Command::new("aa-proxy"). - Library (
aa_proxy::run()): embeddable in-process for integration tests or constrained environments where subprocess spawning is unavailable.