objectiveai-cli 2.2.10

ObjectiveAI command-line interface and embeddable library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Local-filesystem tools — lightweight executables exposed to agents
//! (e.g. as MCP tools). A tool is either hand-placed under
//! `<base_dir>/tools/` or fetched from GitHub via the shared install
//! engine ([`crate::filesystem::install`]); `install` holds the tool
//! side of that pipeline (impl-only, hence `pub mod`).

mod client;
pub mod install;
mod manifest;

pub use client::*;
pub use manifest::*;

#[cfg(test)]
mod install_tests;