agy-bridge 0.1.4

Rust bridge for the Google Antigravity SDK (Python) via PyO3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Policy bridge for the Antigravity SDK.
//!
//! Maps Rust policy rules to the SDK's Python `policy.allow()` / `policy.deny()`
//! / ``policy.workspace_only()`` calls.

pub mod path;
pub(crate) mod pyhook;
mod rules;

pub use path::*;
pub(crate) use pyhook::*;
pub use rules::*;