opencrabs 0.3.47

The autonomous, self-improving AI agent. Single Rust binary. Every channel. Install with: cargo install opencrabs
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Dynamic Tool System
//!
//! Runtime-defined tools loaded from `~/.opencrabs/tools.toml`.
//! These appear in the agent's tool list alongside compiled tools
//! and can be added/removed/reloaded without restarting.

pub mod loader;
pub mod tool;

pub use loader::DynamicToolLoader;
pub use tool::{DynamicTool, DynamicToolDef, DynamicToolsConfig, ExecutorType, ParamDef};