(&self, _repo_root: &Path)
| 366 | } |
| 367 | |
| 368 | fn install(&self, _repo_root: &Path) -> AgentResult<usize> { |
| 369 | // Installation is owned by the integrations engine (the atomic-kiro |
| 370 | // package on Atomic storage); this adapter installs nothing. |
| 371 | Ok(0) |
| 372 | } |
| 373 | |
| 374 | fn uninstall(&self, _repo_root: &Path) -> AgentResult<()> { |
| 375 | Ok(()) // Uninstallation is receipt-driven via the integrations engine. |
no outgoing calls