omni-dev 0.31.0

AI-powered git commit rewriter, PR generator, and MCP server for Jira, Confluence, and Datadog.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Browser bridge: drive HTTP requests through an authenticated browser tab.
//!
//! The bridge runs two planes — a WebSocket plane the browser connects to (via
//! a pasted DevTools snippet) and an HTTP control plane the operator drives —
//! joined by an `id`-keyed correlator. It deliberately lets a local process
//! borrow the browser's authenticated session (a confused-deputy by design), so
//! both planes are authenticated and default-closed. See
//! [docs/browser-bridge.md](../../docs/browser-bridge.md) and
//! [ADR-0036](../../docs/adrs/adr-0036.md).

pub mod auth;
pub mod bridge;
pub mod client;
pub mod harvest;
pub mod protocol;
pub mod snippet;

pub use bridge::{run, BridgeConfig, BridgeServer};