Add a skill directory
(mut self, dir: impl Into<PathBuf>)
| 487 | |
| 488 | /// Add a skill directory |
| 489 | pub fn add_skill_dir(mut self, dir: impl Into<PathBuf>) -> Self { |
| 490 | self.skill_dirs.push(dir.into()); |
| 491 | self |
| 492 | } |
| 493 | |
| 494 | /// Add an agent directory |
| 495 | pub fn add_agent_dir(mut self, dir: impl Into<PathBuf>) -> Self { |
no outgoing calls