(&self, ctx: &InstallContext)
| 57 | } |
| 58 | |
| 59 | fn uninstall(&self, ctx: &InstallContext) -> Result<()> { |
| 60 | let config_path = kilo_config_path(&ctx.home); |
| 61 | uninstall_mcp_server(&config_path); |
| 62 | |
| 63 | eprintln!(); |
| 64 | eprintln!("Uninstall complete. Tracedecay has been removed from Kilo CLI."); |
| 65 | eprintln!("Start a new Kilo CLI session for changes to take effect."); |
| 66 | Ok(()) |
| 67 | } |
| 68 | |
| 69 | fn healthcheck(&self, dc: &mut DoctorCounters, ctx: &HealthcheckContext) { |
| 70 | eprintln!("\n\x1b[1mKilo CLI integration\x1b[0m"); |
nothing calls this directly
no test coverage detected