kaizen-cli 0.1.44

Distributable agent observability: real-time-tailable sessions, agile-style retros, and repo-level improvement (Cursor, Claude Code, Codex). SQLite, redact before any sync you enable.
Documentation
// SPDX-License-Identifier: AGPL-3.0-or-later
//! Local daemon client/lifecycle API.

mod background;
mod capture_status;
mod client;
mod lifecycle;
mod proxy_task;
mod scanner_task;
mod server;
mod supervisor;
mod worker;

pub use background::{BackgroundStart, start_background, start_background_for};
pub use client::{
    begin_observed_session_blocking, ensure_capture_blocking, ensure_proxy_blocking,
    hello_blocking, request_blocking,
};
pub use lifecycle::{
    DaemonStatusOutcome, RuntimePaths, enabled, ensure_running, ensure_running_for, runtime_paths,
    runtime_paths_for, start_foreground, status_outcome, stop, try_status,
};