cueloop 0.4.0

A Rust CLI for managing AI agent loops with a structured JSON task queue
Documentation
//! CueLoop primary CLI binary.
//!
//! Purpose:
//! - Provide the primary `cueloop` executable entrypoint.
//!
//! Responsibilities:
//! - Delegate startup, parsing, logging, sanity checks, and command dispatch to the shared CLI entrypoint.
//!
//! Scope:
//! - Binary bootstrap only; implementation lives in `cueloop::cli_entrypoint`.
//!
//! Usage:
//! - Built by Cargo as the primary CueLoop CLI binary.
//!
//! Invariants/assumptions:
//! - The shared entrypoint derives display/help naming from argv[0].

fn main() {
    cueloop::cli_entrypoint::main();
}