(&self, ctx: &InstallContext, project_path: &Path)
| 53 | } |
| 54 | |
| 55 | fn install_local(&self, ctx: &InstallContext, project_path: &Path) -> Result<()> { |
| 56 | install_mcp_server(&project_path.join("kilo.json"), &ctx.tracedecay_bin) |
| 57 | } |
| 58 | |
| 59 | fn uninstall(&self, ctx: &InstallContext) -> Result<()> { |
| 60 | let config_path = kilo_config_path(&ctx.home); |
nothing calls this directly
no test coverage detected