List all registered agents
(&self)
| 648 | |
| 649 | /// List all registered agents |
| 650 | pub fn list(&self) -> Vec<AgentDefinition> { |
| 651 | let agents = read_or_recover(&self.agents); |
| 652 | agents.values().cloned().collect() |
| 653 | } |
| 654 | |
| 655 | /// List visible agents (not hidden) |
| 656 | pub fn list_visible(&self) -> Vec<AgentDefinition> { |