objectiveai-cli 2.1.3

ObjectiveAI command-line interface and embeddable library
Documentation
//! Postgres-backed state for the CLI.
//!
//! Replaces the legacy `filesystem::db` SQLite tree. One sqlx `PgPool`
//! over the objectiveai-db cluster whose `postgresql://` URL is
//! published in the `db` spawn lock (or a remote postgres pointed at
//! via `db config address`), lazily initialized by
//! `Context::db_client()`; every tier ([`tags`], [`message_queue`],
//! [`tasks`], [`logs`]) takes `&Pool` and runs natively async.

mod error;
pub use error::*;

mod pool;
pub use pool::*;

mod init;
pub use init::*;

pub mod agent_continuations;
pub mod compartment;
pub mod instances;
pub mod logs;
pub mod query;
pub mod tags;
pub mod tag_groups;
pub mod message_queue;
pub mod tasks;