(&self, repo_root: &Path)
| 1000 | } |
| 1001 | |
| 1002 | fn uninstall(&self, repo_root: &Path) -> AgentResult<()> { |
| 1003 | self.uninstall_global()?; |
| 1004 | Self::uninstall_legacy_project_file(repo_root); |
| 1005 | Self::remove_agents_md_section(repo_root)?; |
| 1006 | Ok(()) |
| 1007 | } |
| 1008 | |
| 1009 | fn is_installed(&self, repo_root: &Path) -> bool { |
| 1010 | // Installed means both halves are present *and current*: the global |
nothing calls this directly
no test coverage detected