Where the CLI clones/syncs the package repository for an agent.
(agent: &str)
| 43 | |
| 44 | /// Where the CLI clones/syncs the package repository for an agent. |
| 45 | pub fn cache_repo_dir(agent: &str) -> AgentResult<PathBuf> { |
| 46 | Ok(agent_dir(agent)?.join("repo")) |
| 47 | } |
| 48 | |
| 49 | /// Path to an agent's receipt file. |
| 50 | pub fn receipt_path(agent: &str) -> AgentResult<PathBuf> { |
no test coverage detected