Per-agent integration directory: `~/.atomic/integrations/ `.
(agent: &str)
| 38 | |
| 39 | /// Per-agent integration directory: `~/.atomic/integrations/<agent>`. |
| 40 | pub fn agent_dir(agent: &str) -> AgentResult<PathBuf> { |
| 41 | Ok(integrations_root()?.join(agent)) |
| 42 | } |
| 43 | |
| 44 | /// Where the CLI clones/syncs the package repository for an agent. |
| 45 | pub fn cache_repo_dir(agent: &str) -> AgentResult<PathBuf> { |
no test coverage detected