Sherpa is self-managed — no config file to write.
(&self, _repo_root: &Path)
| 276 | |
| 277 | /// Sherpa is self-managed — no config file to write. |
| 278 | fn install(&self, _repo_root: &Path) -> AgentResult<usize> { |
| 279 | // The Sherpa TUI calls `atomic agent hooks sherpa <verb>` directly. |
| 280 | // There is no external config file to patch. |
| 281 | Ok(0) |
| 282 | } |
| 283 | |
| 284 | /// Sherpa is self-managed — no config file to clean up. |
| 285 | fn uninstall(&self, _repo_root: &Path) -> AgentResult<()> { |
no outgoing calls