openlatch-provider 0.1.0

Self-service onboarding CLI + runtime daemon for OpenLatch Editors and Providers
//! `openlatch-provider` — single-binary CLI + runtime daemon for OpenLatch
//! Editors and Providers. See `CLAUDE.md` and `.claude/rules/openlatch-architecture.md`
//! for the architecture overview.

// `OlError` is intentionally rich (code + message + suggestion + context +
// source) to drive the human/JSON/SARIF renderers. The trade-off (a fatter
// `Result::Err` variant) is accepted at crate level — wrapping every fallible
// function in `Box<OlError>` would add ceremony without buying anything.
#![allow(clippy::result_large_err)]

pub mod api;
pub mod auth;
pub mod cli;
pub mod config;
pub mod error;
pub mod generated;
pub mod manifest;
pub mod runtime;
pub mod telemetry;
pub mod ui;