objectiveai-sdk 2.1.3

ObjectiveAI SDK, definitions, and utilities
Documentation
//! Async handlers for every cli leaf command (except `api`,
//! `schemas`, the internal `instance` subprocess runner, and
//! clap's `external` plugin dispatch). Stubs today; typed `Args`
//! + `pub async fn handle(...)` signatures land in follow-up
//! commits.

mod command;
pub use command::*;

mod agent_arguments;
pub use agent_arguments::*;

mod command_request;
pub use command_request::*;

#[cfg(feature = "mcp")]
mod command_response;
#[cfg(feature = "mcp")]
pub use command_response::*;

mod from_args_error;
pub use from_args_error::*;

#[cfg(feature = "cli-executor")]
pub mod command_executor;
#[cfg(feature = "cli-executor")]
pub use command_executor::*;

#[cfg(feature = "cli-executor")]
mod stream_once;
#[cfg(feature = "cli-executor")]
pub use stream_once::*;

mod ok;
pub use ok::*;

mod path_ref;
pub use path_ref::*;

mod scope;
pub use scope::*;

mod request_base;
pub use request_base::*;

mod response_schema;
pub use response_schema::*;

pub mod agents;
pub mod api;
pub mod db;
pub mod functions;
pub mod mcp;
pub mod plugins;
pub mod swarms;
pub mod tasks;
pub mod tools;
pub mod update;
pub mod viewer;