(agent_type: &str)
| 11 | pub mod librarian; |
| 12 | |
| 13 | pub fn get_prompt(agent_type: &str) -> Option<&'static str> { |
| 14 | match agent_type { |
| 15 | "orchestrator" => Some(orchestrator::SYSTEM_PROMPT), |
| 16 | "planner" => Some(planner::SYSTEM_PROMPT), |
| 17 | "coder_fe" => Some(coder_fe::SYSTEM_PROMPT), |
| 18 | "coder_be" => Some(coder_be::SYSTEM_PROMPT), |
| 19 | "security" => Some(security::SYSTEM_PROMPT), |
| 20 | "ux_researcher" => Some(ux_researcher::SYSTEM_PROMPT), |
| 21 | "ui_designer" => Some(ui_designer::SYSTEM_PROMPT), |
| 22 | "tester" => Some(tester::SYSTEM_PROMPT), |
| 23 | "reviewer" => Some(reviewer::SYSTEM_PROMPT), |
| 24 | "researcher" => Some(researcher::SYSTEM_PROMPT), |
| 25 | "librarian" => Some(librarian::SYSTEM_PROMPT), |
| 26 | _ => None, |
| 27 | } |
| 28 | } |
no outgoing calls
no test coverage detected