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
12
13
14
//! Team Orchestration — named groups of sub-agents with batch operations.
//!
//! Provides 3 tools: team_create, team_delete, team_broadcast.
//! Teams are tracked by TeamManager; individual agents still live in SubAgentManager.

mod broadcast;
mod create;
mod delete;
pub mod manager;

pub use broadcast::TeamBroadcastTool;
pub use create::TeamCreateTool;
pub use delete::TeamDeleteTool;
pub use manager::TeamManager;