Add a skill registry with built-in skills
(mut self)
| 205 | |
| 206 | /// Add a skill registry with built-in skills |
| 207 | pub fn with_builtin_skills(mut self) -> Self { |
| 208 | self.skill_registry = Some(Arc::new(crate::skills::SkillRegistry::with_builtins())); |
| 209 | self |
| 210 | } |
| 211 | |
| 212 | /// Add a custom skill registry |
| 213 | pub fn with_skill_registry(mut self, registry: Arc<crate::skills::SkillRegistry>) -> Self { |
no outgoing calls
no test coverage detected