Skip to main content

objectiveai_cli/filesystem/tools/
mod.rs

1//! Local-filesystem tools — lightweight executables a user drops into
2//! `<base_dir>/tools/` for later exposure to agents (e.g. as MCP
3//! tools). Mirrors `filesystem::plugins` minus the install pipeline:
4//! tools are hand-placed, not fetched from GitHub.
5
6mod client;
7mod manifest;
8
9pub use client::*;
10pub use manifest::*;