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

Method install

src/agents/kilo.rs:38–49  ·  view source on GitHub ↗
(&self, ctx: &InstallContext)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

kilo_config_dirFunction · 0.85
kilo_config_pathFunction · 0.85
install_mcp_serverFunction · 0.70

Tested by

no test coverage detected