use super::coordinator::Swarm;
use super::types::{Agent, AgentRole};
pub fn create_dev_swarm() -> Swarm {
let mut swarm = Swarm::new();
swarm.add_agent(Agent::new("Archie", AgentRole::Architect));
swarm.add_agent(Agent::new("Cody", AgentRole::Coder));
swarm.add_agent(Agent::new("Tessa", AgentRole::Tester));
swarm.add_agent(Agent::new("Rex", AgentRole::Reviewer));
swarm
}