(&self, ctx: &InstallContext)
| 32 | } |
| 33 | |
| 34 | fn install(&self, ctx: &InstallContext) -> Result<()> { |
| 35 | let settings_path = roo_ext_dir(&ctx.home).join("settings/cline_mcp_settings.json"); |
| 36 | install_mcp_server(&settings_path, &ctx.tracedecay_bin)?; |
| 37 | |
| 38 | eprintln!(); |
| 39 | eprintln!("Setup complete. Next steps:"); |
| 40 | eprintln!(" 1. cd into your project and run: tracedecay init"); |
| 41 | eprintln!(" 2. Restart VS Code — tracedecay tools are now available in Roo Code"); |
| 42 | Ok(()) |
| 43 | } |
| 44 | |
| 45 | fn supports_local_install(&self) -> bool { |
| 46 | true |
nothing calls this directly
no test coverage detected