(&self, ctx: &InstallContext)
| 36 | } |
| 37 | |
| 38 | fn install(&self, ctx: &InstallContext) -> Result<()> { |
| 39 | let config_dir = kilo_config_dir(&ctx.home); |
| 40 | std::fs::create_dir_all(&config_dir).ok(); |
| 41 | let config_path = kilo_config_path(&ctx.home); |
| 42 | install_mcp_server(&config_path, &ctx.tracedecay_bin)?; |
| 43 | |
| 44 | eprintln!(); |
| 45 | eprintln!("Setup complete. Next steps:"); |
| 46 | eprintln!(" 1. cd into your project and run: tracedecay init"); |
| 47 | eprintln!(" 2. Start a new Kilo CLI session — tracedecay tools are now available"); |
| 48 | Ok(()) |
| 49 | } |
| 50 | |
| 51 | fn supports_local_install(&self) -> bool { |
| 52 | true |
nothing calls this directly
no test coverage detected