hanzo-agents 1.1.21

Specialized AI agents for development workflows - architect, CTO, code reviewer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Specialized agent implementations

pub mod architect;
pub mod cto;
pub mod explorer;
pub mod planner;
pub mod reviewer;
pub mod scientist;

pub use architect::ArchitectAgent;
pub use cto::CtoAgent;
pub use explorer::ExplorerAgent;
pub use planner::PlannerAgent;
pub use reviewer::ReviewerAgent;
pub use scientist::ScientistAgent;