(&self, ctx: &InstallContext)
| 37 | } |
| 38 | |
| 39 | fn install(&self, ctx: &InstallContext) -> Result<()> { |
| 40 | install_codex_plugin(&ctx.home, &ctx.tracedecay_bin)?; |
| 41 | sweep_legacy_global_codex_config(&ctx.home); |
| 42 | |
| 43 | eprintln!(); |
| 44 | eprintln!("Setup complete. Next steps:"); |
| 45 | eprintln!(" 1. cd into your project and run: tracedecay init"); |
| 46 | eprintln!(" 2. In Codex, run: codex plugin add tracedecay@personal"); |
| 47 | eprintln!(" 3. Start a new Codex session — tracedecay tools are now available"); |
| 48 | print_hook_trust_guidance(); |
| 49 | Ok(()) |
| 50 | } |
| 51 | |
| 52 | fn supports_local_install(&self) -> bool { |
| 53 | true |
nothing calls this directly
no test coverage detected