MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / install

Method install

src/agents/zed.rs:41–51  ·  view source on GitHub ↗
(&self, ctx: &InstallContext)

Source from the content-addressed store, hash-verified

39 }
40
41 fn install(&self, ctx: &InstallContext) -> Result<()> {
42 let config_dir = zed_config_dir(&ctx.home);
43 let settings_path = config_dir.join("settings.json");
44 install_context_server(&settings_path, &ctx.tracedecay_bin)?;
45
46 eprintln!();
47 eprintln!("Setup complete. Next steps:");
48 eprintln!(" 1. cd into your project and run: tracedecay init");
49 eprintln!(" 2. Restart Zed — tracedecay tools are now available");
50 Ok(())
51 }
52
53 fn supports_local_install(&self) -> bool {
54 true

Calls 2

zed_config_dirFunction · 0.85
install_context_serverFunction · 0.85